Dominykas
Forum Replies Created
-
Forum: Plugins
In reply to: [Content Randomizer] Shortcode to display a categoryClosing.
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] Show only parent colors on widgetHi Frunky,
You are right. It’s not good to change the plugin files because they will disappear after updating the plugin.
You can’t redeclare. You can only create a new widget with the same functions and place it in your theme folder..
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] Color Name on HoverWell, you can try to customize with CSS. What’s your web site address?
BTW, we don’t provide customizations for free plugins.
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] How I can get color value?Hi there.
This code should work:
global $post; $product_colors = get_the_terms( $post, 'product_color' ); $saved_colors = get_option( 'nm_taxonomy_colors' ); if(isset($product_colors) && is_array($product_colors)){ foreach($product_colors as $color){ $term_id = $color->term_id; $hex_code = $saved_colors[$term_id]; echo $hex_code . '<br />'; } }
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] Color Name on HoverHey, unfortunately it does not work out of the box
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] Color Name on HoverYou can try to make it work with some jQuery code. At first, you need to hide all colors names, then show color name on hover.
I wrote a function for you. Add it to your theme’s functions.php file:
function cf_show_color_name_on_hover() { ?> <script type="text/JavaScript"> // Hide all color names jQuery('.color_and_text_link').hide(); jQuery('.rcorners').hover( function() { // Show color name on hover jQuery( this ).parent().parent().find('.color_and_text_link').show(); }, function() { // Hide color name jQuery( this ).parent().parent().find('.color_and_text_link').hide(); }); </script> <?php } add_action( 'wp_footer', 'cf_show_color_name_on_hover' );
And configure your widget to show Color and name.
- This reply was modified 7 years, 8 months ago by Dominykas.
Forum: Plugins
In reply to: [Content Randomizer] Timing of slide showHi Todd,
Very sorry for the late reply.
You need to use a filter to filter out the arguments, then you can change the timing. I wrote it for you. You need to add it to your theme’s functions.php file. Just copy the code below.
function change_cr_slideshow_speed( $arguments ) { $speed = 6000; // AutoPlay Timeout Speed in Milliseconds. 1000 = 1 second. $arguments = 'singleItem:true, items:1, autoplay:true, autoplayTimeout:'. $speed .', autoplayHoverPause:true, dots:false, loop:true'; return $arguments; } add_filter( 'elm_rt_slideshow_args', 'change_cr_slideshow_speed' );
It will set the time to 6 seconds. You can change it by changing the numbers in $speed = 6000;
6000 is in milliseconds. If you want to set the timing to 10seconds, then you need to write 10000.Unfortunately, we don’t have an option to control these things in admin. Maybe we’ll add it later.
Hope this helps!
Forum: Plugins
In reply to: [Content Randomizer] Shortcode to display a categoryHi April,
You should use the same shortcode, but you need to add the ID of the category to category=”” attribute.
Example
[elm_random category=”1″]Default is category=”all” (It gets all records from all categories).
Do you know how to get the ID of the category for Content Randomizer?
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] selecting multiple coloursHi Das,
I’m glad you like it! Unfortunately, you can’t select multiple colors at the moment. I’m adding this to our to-do list.
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] Color category pages don’t show sidebarHi there,
I think your theme product category page template is missing sidebar. Are you using premium theme? If so, you should contact your theme author so that they can help you with adding sidebar to the product category page.
Unfortunately, I can’t help you with this stuff because your issue is not related with the plugin.
Hope this helps.
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] Color filtering in subcategoriesHi there,
Thanks for asking! Unfortunately, it does not work “out of the box”. It shouldn’t be a big deal to add this feature because if you visit url like this: your-site/?product_cat=test&product_color=light-green you should get products from two categories (product category and color), but there’s no filter at the moment. We’ll add this in next version of the plugin.
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] i wish to assosiate variations to colorsClosing
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] i wish to assosiate variations to colorsHi Royce,
Thank you for a feature request. Actually, we have not implemented this yet. I can let you know when it’s ready, but you need to send us an email from elementous.com contact form so that we can add your email to a mailing list.
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] Problem links in plugin widgetYou’re welcome ! ??
Forum: Plugins
In reply to: [Ultimate WooCommerce Filters] Color sortingClosing.