laracroftofficial
Forum Replies Created
-
Forum: Plugins
In reply to: [Async JavaScript] Uncaught ReferenceError: wp is not definedThanks for fast answer.
Yes, in this case I have the correct behavior of minicart!Thanks a lot!
Thanks for this update!
I’ve achieved correct order with these parameters:[wcpscwc_pdt_slider orderby=”menu_order” order=”ASC”]
Forum: Plugins
In reply to: [Yoast SEO] Title for woocommerce categoriesOkay!
I’ve created my own variable for this:// define the custom replacement callback function get_myname() { $curr_cat = get_queried_object(); if($curr_cat->parent > 0): $parentcats = get_ancestors($curr_cat->term_id, 'product_cat'); foreach($parentcats as $parent): $cat = get_term($parent,'product_cat'); $cat_name = $cat->name; endforeach; else: $cat_name = $curr_cat->name; endif; return $cat_name; } // define the action for register yoast_variable replacments function register_custom_yoast_variables() { wpseo_register_var_replacement( '%%myname%%', 'get_myname', 'advanced', 'text' ); }
Forum: Plugins
In reply to: [Contact Form 7] Problem with messages transation.How can I change locale for the already existing forms?
In your link I see that I need to change locale for admin to language that I need, after that create new form and only after that we will have correct locale for new form in Frontend.
I know many strange solutions in many CMS, but this is one of strange!
If I have 20 languages for my site I need to repeat this actions 20 time?..
Why we can’t select the locale for currect form directly in this form – https://www.awesomescreenshot.com/image/36979934
In this select we will have a list of our languages – exactly same as for this “Users > Your Profile?admin menu page. You’ll find the language selector there.”Forum: Plugins
In reply to: [Yoast SEO] Title for woocommerce categoriesHi @maybellyne
Yes, you’re right.
But I need to modify order in%%term_hierarchy%%
for this order:child category separator parent category.
Is it possible?Forum: Plugins
In reply to: [WooCommerce] Wrong amount in mini cartHi @roxannestoltz
Thanks for your comment.
I updated WC to the latest version and now my problem is solved.
Thanks again!Forum: Plugins
In reply to: [Contact Form 7] Problem with messages transation.Okay.
This is a site, form page – https://wp.sicher-testen.ch/deutsch/kontakt/
This is a screenshot with attempt of submit an empty form – https://www.awesomescreenshot.com/image/36939962 with English error messages.Forum: Plugins
In reply to: [Contact Form 7] Problem with messages transation.It’s not a public for now.
How I can send you private link to this site?Thanks for this!
I’ll wait new releases!Any update or advice?
@mkesteban08- I have no this item – Premmerce Permalink Manager >> Settings.
- This URL https://mysite.com/wp-admin/options-permalink.php#bwlm-settings have settings which I already shown you in my first screenshot – just scroll it down.
- In anyway – this is cropped screenshot with this settings – https://www.awesomescreenshot.com/image/36427807?key=cbd0de658b02532c9ab2aa2bc9e44e89
Hi Mark!
I already posted it in my first message –
“This is screenshot of my permalinks –?https://www.awesomescreenshot.com/image/36427807?key=cbd0de658b02532c9ab2aa2bc9e44e89“
Please check the linkThanks for this answer!
Maybe in the future you’ll think about this possibility!?Sad…
But thanks in any case!
Maybe you need to add info about this in description or docs?
BTW – can you give me a clue how I can round the prices for products with applied rule?
My goal is round all prices with my disounts to 5 cents in the end!
An amount of CHF 10.12 is rounded down to CHF 10.10
An amount of CHF 10.13 will be rounded up to CHF 10.15
I’ll plan to apply this code to final price in your plugin, but I don’t know yet where exactly I need to to it:<?php $betrag = round(($betrag + 0.000001) * 20) / 20; ?>
Hi guys!
This option solved my problem ”?did you try to enable Pricing rules>Settings>Product page>Don’t modify product price on product page?”