Forum Replies Created
-
AuthorPosts
-
sujeet
KeymasterHello Tim,
Okay that’s fine, I understood. We’ve fixed the issue and the update is on its way.
Soon you will be receiving it. Please kindly let me know if the new update fixed the error. Thank you.Regards,
Sujeet-
This reply was modified 1 day, 19 hours ago by
sujeet.
sujeet
KeymasterHello @tjarks-timgmail-com,
Yes we noticed that after a WP update to 6.9, there is an issue with the playlist. Our team has started fixing it. Soon you will get a theme update.
Meanwhile, can you please share your website url, so that we can have a deep look into your issue during the fixing phase? Thank you.
Regards,
Sujeetsujeet
KeymasterHello @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.
Let me know if this worked. Thank you.
Regards,
Sujeetsujeet
KeymasterHello @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 1 day, 21 hours ago by
Sakin.
sujeet
KeymasterHello @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,
Sujeetsujeet
KeymasterNovember 14, 2025 at 12:43 am in reply to: move website to a new server and need to update PHP version to 8.3 #341536sujeet
KeymasterHello @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,
SujeetNovember 12, 2025 at 12:39 am in reply to: Ideas on how to put a undo button back on the WordPress edit bar #341530sujeet
KeymasterHello Cindy,
WordPress no longer allows adding undo/redo buttons to “Screen Options”. Instead you can see the button under toolbar toggle. Check the screenshot.
Let me know if this helped you. Thank you.
Regards,
Sujeet-
This reply was modified 3 weeks, 3 days ago by
sujeet.
sujeet
KeymasterNovember 11, 2025 at 12:53 am in reply to: move website to a new server and need to update PHP version to 8.3 #341526sujeet
KeymasterHello @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,
SujeetOctober 23, 2025 at 11:07 pm in reply to: Text does not display in editing mode – only photos #341492sujeet
KeymasterHello @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.
Can you please add an screenshot here to view?
Regards,
Sujeetsujeet
KeymasterGood to hear that Hasn.
September 12, 2025 at 2:10 am in reply to: Conflict with Version 2.6 and SiteOrigin PageBuilder #341218sujeet
KeymasterHello 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,
Sujeetsujeet
KeymasterHello 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,
Sujeetsujeet
KeymasterHello Glen,
Sorry for the inconvenience caused.
Please update the themes to the latest version once available. It should fix the issues. Thank you.
Regards,
SujeetSeptember 11, 2025 at 2:27 am in reply to: Conflict with Version 2.6 and SiteOrigin PageBuilder #341206sujeet
KeymasterHello Glen,
Sorry for the inconvenience caused.
Please update the themes to the latest version once available. It should fix the issues. Thank you.
Regards,
Sujeetsujeet
KeymasterHello @pennoto,
Sorry for the inconvenience caused.
Can you please try deactivating plugins and check?Also please kindly share your website URL.
Regards,
Sujeetsujeet
KeymasterHello @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,
Sujeetsujeet
KeymasterHello 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 -
This reply was modified 1 day, 19 hours ago by
-
AuthorPosts



