Forum Replies Created

Viewing 20 posts - 1 through 20 (of 302 total)
  • Author
    Posts
  • 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 1 month, 1 week ago by sujeet.
    • This reply was modified 1 month, 1 week ago by sujeet.
    • This reply was modified 1 month, 1 week ago by sujeet.
    • This reply was modified 1 month, 1 week ago by sujeet.
    • This reply was modified 1 month, 1 week ago by sujeet.
    • This reply was modified 1 month, 1 week ago by sujeet.
    • This reply was modified 1 month, 1 week ago by sujeet.
    • This reply was modified 1 month, 1 week ago by sujeet.
    • This reply was modified 1 month, 1 week ago by sujeet.
    sujeet
    Keymaster

    Hello @heinelg,

    I think this happens because of confusion on post/page/draft/published.
    The page/post should obviously work as other pages/posts work fine.

    Please let me know if you need any further assistance. Thank you.

    Regards,
    Sujeet

    sujeet
    Keymaster

    Hello @heinelg,

    I think the one with gallery image with no content is a Page and another North American Wheel Bug is a post which is currently drafted. So I suggest you to publish the drafted post and check that specific post. It should work.

    And as for now you don’t have to send html code to check. You please try creating a new post, add gallery and content, it should work. Please try and let me know. Thank you.

    Regards,
    Sujeet

    in reply to: Hamburger Menu Not Working. #340958
    sujeet
    Keymaster

    wow ! that’s nice Glen.

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

    Hello Alex,

    By default, WooCommerce lets you make attributes visible on the product page, but currently Fotografie theme doesn’t actually output them in the single product template. That’s why you only see Category, Tags, and SKU, but not your custom attributes (genre, length, format).

    They are only visible in Additional Information when you tick the “visible on the product page” option of any product which you already have it in each book. Please check the screenshot.

    additional-information

    Please feel free to reach out if you have any other questions.

    Regards,
    Sujeet

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

    Hello Alex,

    Thanks for the response. I will get back to you soon.

    Regards,
    Sujeet

    sujeet
    Keymaster

    Hello @heinelg,

    You can upload files through this website(https://imgbb.com/) and send us link. First upload a file and choose HTML full linked under embed codes. Copy link and paste it here. Check screenshot below.

    upload

    Also, the plugins that you have used may case the issue. So, please try to check deactivating the plugins and let me know. Thank you.

    Regards,
    Sujeet

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

    Hello @petah,

    Strange! This should not happen, if all the images are of same dimensions. Can you please try resizing the image that you have marked in the screenshot, the one which is causing issue. I’ve also attached it here below. Please resize the image to the same dimension: 1146×574 pixels.

    re-upload

    And please keep it uploaded and published in the site, so that I can check it here. Thank you.

    Regards,
    Sujeet

    in reply to: Hamburger Menu Not Working. #340943
    sujeet
    Keymaster

    Hello @fireflywebs,

    I checked in ios, android and in all other browsers, all OK. Here is the screenshot:

    android

    Can you please check clearing cache of your browser? If didn’t work, send me more details about issue, so that I can check it again. Thank you.

    Regards,
    Sujeet

    sujeet
    Keymaster

    Hello @heinelg,

    Can you please mention the exact issue here with the proper screenshot of published and preview versions of the post? So that I can check and try giving you the solution?

    Regards,
    Sujeet

Viewing 20 posts - 1 through 20 (of 302 total)