Forum Replies Created

Viewing 20 posts - 41 through 60 (of 351 total)
  • Author
    Posts
  • in reply to: Homepage image #341709
    sujeet
    Keymaster

    Hello @bigoslesli,

    The theme has such options to position the image. Please got to Appearance => Customize => Header Media => Image Position (Desktop View) & Image Position (Mobile View). Choose the desired option and publish. You will see the change. Check the screenshot as well.

    media-position

    Let me know if this worked. Thank you.

    Regards,
    Sujeet

    in reply to: Strange image since update #341706
    sujeet
    Keymaster

    Hello @rodeboy,

    It’s already fixed in the Rock Star Pro theme. It’s may be some plugins that you have used causing the error. So you need to either deactivate the plugin or contact the plugin author to update it.

    You can check with this plugin https://wordpress.org/plugins/query-monitor/ to find our which plugin is causing the issue.

    Regards,
    Sujeet

    • This reply was modified 3 months, 3 weeks ago by Sakin.
    in reply to: Strange image since update #341693
    sujeet
    Keymaster

    Hello @rodeboy,

    Thanks for letting us know about the bug. We have now updated the theme and soon you will get an update for your theme. Thank you.

    Regards,
    Sujeet

    in reply to: The link you followed has expired. #341686
    sujeet
    Keymaster

    Hello @btcbtc,

    That’s nice. Let us know if you face any issue. Thank you.

    Regards,
    Sujeet

    sujeet
    Keymaster

    Hello @cindykstandardcartage-com,

    I would suggest you to use our Catch Import Export plugin to migrate your customizer settings.

    For instructions you can check out the Instructions tab in this link.

    Let me know if this helped you in anyway. Thank you.

    Regards,
    Sujeet

    sujeet
    Keymaster

    Hello Cindy,

    WordPress no longer allows adding undo/redo buttons to “Screen Options”. Instead you can see the button under toolbar toggle. Check the screenshot.

    buttons

    Let me know if this helped you. Thank you.

    Regards,
    Sujeet

    • This reply was modified 4 months, 2 weeks ago by sujeet.
    sujeet
    Keymaster

    Hello @cindykstandardcartage-com,

    Seems the theme you are using is of version 2.3. Please I suggest you to renew your license and activate it.

    You can renew the theme from your account.

    1. First, log in to https://catchthemes.com/my-account/ page: Once you are on the My Account page, click on “View Licenses,” and you will see the status of your license
    2. If your license key has expired, then you need to click on “Renew license” and check out. But if you want to renew it before it expires, then you need to click on “Extend license” and then check out.

    Thank you.

    Regards,
    Sujeet

    in reply to: Text does not display in editing mode – only photos #341492
    sujeet
    Keymaster

    Hello @tazmpictures,

    We have checked in our end, there is no such issue in the editor. Text and images are clearly visible. I’ve attached the screenshot as well.

    ss

    Can you please add an screenshot here to view?

    Regards,
    Sujeet

    in reply to: Unable to enter License Key #341491
    sujeet
    Keymaster

    That’s great @brianweb

    in reply to: I cannot change templates or patterns #341364
    sujeet
    Keymaster

    Good to hear that Hasn.

    in reply to: Conflict with Version 2.6 and SiteOrigin PageBuilder #341218
    sujeet
    Keymaster

    Hello Glen,

    Please try clearing cache and disable other plugins as well. If you still have the same issue, then let me know and will contact you through email. Thank you.

    Regards,
    Sujeet

    in reply to: Duplicated post and feature Image #341217
    sujeet
    Keymaster

    Hello Glen,

    We are looking into Solid Construction and Vogue for the issues with Site Origin plugin. We’ve checked in our local server but everything is fine.

    Please try clearing cache and disable other plugins as well. If you still have the same issue, then let me know and will contact you through email. Thank you.

    Regards,
    Sujeet

    in reply to: Duplicated post and feature Image #341207
    sujeet
    Keymaster

    Hello Glen,

    Sorry for the inconvenience caused.

    Please update the themes to the latest version once available. It should fix the issues. Thank you.

    Regards,
    Sujeet

    in reply to: Conflict with Version 2.6 and SiteOrigin PageBuilder #341206
    sujeet
    Keymaster

    Hello Glen,

    Sorry for the inconvenience caused.

    Please update the themes to the latest version once available. It should fix the issues. Thank you.

    Regards,
    Sujeet

    in reply to: Fatal Error #341205
    sujeet
    Keymaster

    Hello @pennoto,

    Sorry for the inconvenience caused.
    Can you please try deactivating plugins and check?

    Also please kindly share your website URL.

    Regards,
    Sujeet

    in reply to: the button color of Catch Vogue Pro #341181
    sujeet
    Keymaster

    Hello @asako-kato,

    For changing Button Hover Background Color, you can do it from Appearance => Customizer => Colors => Button Hover Background Color and you are also able to change other colors as well.

    And for changing blockquote color please add the following css code to Appearance => Customizer => Additional Css

    
    blockquote {
       border-color: #008000 !important;
    }
    

    Please let me know if you’re able to do. Thank you.

    Regards,
    Sujeet

    in reply to: display product attributes on product pages #341167
    sujeet
    Keymaster

    Hello Alex,

    Try to add the following code instead.

    add_action('woocommerce_product_meta_end', 'su_filterable_attributes_inline');
    
    function su_filterable_attributes_inline()
    {
    if (! function_exists('wc_get_page_permalink')) return;
    
    global $product;
    if (! $product) return;
    
    $attributes = $product->get_attributes();
    if (empty($attributes)) return;
    
    $shop_url = wc_get_page_permalink('shop');
    if (! $shop_url) return;
    
    echo '<span class="custom-product-attributes">';
    
    foreach ($attributes as $attribute) {
    if (! $attribute->get_visible()) continue;
    
    if ($attribute->is_taxonomy()) {
    $taxonomy = $attribute->get_name();
    $label = wc_attribute_label($taxonomy);
    $base_slug = sanitize_title(str_replace('pa_', '', $taxonomy));
    $filter_key = 'filter_' . $base_slug;
    
    $terms = wc_get_product_terms($product->get_id(), $taxonomy, array('fields' => 'all'));
    if (empty($terms)) continue;
    
    $links = array();
    foreach ($terms as $term) {
    $url = add_query_arg(
    array(
    $filter_key => $term->slug,
    'query_type_' . $base_slug => 'or',
    ),
    $shop_url
    );
    $links[] = '<a class="attr-chip attr-chip--' . esc_attr($term->slug) . '" href="' . esc_url($url) . '">' . esc_html($term->name) . '</a>';
    }
    
    echo '<span class="product-attr"><strong>' . esc_html($label) . ':</strong> ' . implode(', ', $links) . '</span> <br>';
    } else {
    
    $label = wc_attribute_label($attribute->get_name());
    $value = implode(', ', $attribute->get_options());
    echo '<span class="product-attr"><strong>' . esc_html($label) . ':</strong> ' . esc_html($value) . '</span> ';
    }
    }
    
    echo '</span>';
    }
    

    And you can try using ‘All-in-One WP Migration and Backup’ plugin to transfter the theme. That may help.

    Please let me know if this worked. Thank you.

    Regards,
    Sujeet

    in reply to: Different sizes in post image #341083
    sujeet
    Keymaster

    Hello @petah,

    Yes all this because of the plugin you have used. The theme has different style and image size. Can you try if the plugin support can be of any help? Did you try with them?

    Regards,
    Sujeet

    in reply to: Mouse Pointer Dot color #341059
    sujeet
    Keymaster

    Hello @madcast,

    To change the color of the mouse pointer, add the following css code to Appearance => Editor => Styles => Additional Css

    
    @media screen and (min-width: 75em) {
    .custom-cursor {
       background: red !important;
     }
    }
    

    addtional-css

    Or you can change the primary color of the whole theme, which will change the color of the mouse pointer as well. For that go to Appearance => Editor => Styles => Colors => Edit Palette => Change primary color. Check the screenshots below:

    style

    pallet

    primary

    Please let me know if this worked. Thank you.

    Regards,
    Sujeet

    in reply to: display product attributes on product pages #341004
    sujeet
    Keymaster

    Hello Alex,

    To add custom function or code to the theme, It is better to use child theme instead because once you get your theme updated, your changes in the theme will be erased. So please think that as well while using custom function. Check this link for creating child theme: https://catchthemes.com/blog/create-child-theme-wordpress/

    The following code can show the additional information just after SKU, Category in product page.

    Please got to Dashboard => Tools => Theme File Editor => Function.php

    theme-file

    att

    Here is the code:

    
    add_action('woocommerce_product_meta_end', 'custom_attributes_inline');
    
    function custom_attributes_inline()
    {
        // Paste your custom codes here
        // You will see the attributes under SKU, Category in product page
    }
    

    Please let me know if this worked. Thank you.

    Regards,
    Sujeet

    • This reply was modified 7 months ago by sujeet.
    • This reply was modified 7 months ago by sujeet.
    • This reply was modified 7 months ago by sujeet.
    • This reply was modified 7 months ago by sujeet.
    • This reply was modified 7 months ago by sujeet.
    • This reply was modified 7 months ago by sujeet.
    • This reply was modified 7 months ago by sujeet.
    • This reply was modified 7 months ago by sujeet.
    • This reply was modified 7 months ago by sujeet.
Viewing 20 posts - 41 through 60 (of 351 total)