Dumbo16556
Forum Replies Created
-
Forum: Plugins
In reply to: [Filter for Elementor] ef area stops lightbox to openthis works:
.ef-area .elementor-widget-image .elementor-widget-container::after{content:none !important;}
now that I solved that I find the picky filter not working.. it does multiple filtering.. even reimported your template – it DOES NOT WORK – dear Daniel maybe you can call me?
Ausserdem hasst Du lauter Schreibfehler in deiner Anleitung… insbesonder bei class Bezeichnungen ist das etwas unglücklich. Sorry so genervt zu sein aber ich sitze an dem sch… seit Stunden …
Forum: Plugins
In reply to: [Filter for Elementor] ef area stops lightbox to openand if I buy the pro version I really don’t want to advertise your site.. within the page code this appears – if you ask me that is really not on. please tell me how to eliminate this
Filtering done with Elementor Filter Plugin, get it for free: https://danielvoelk.de/en/elementor-filter/
could you please give me an email where I can send it too?
well I tried to pose this question on your site but the contact form did not work
Forum: Plugins
In reply to: [Automatic Translator with Google Translate] Changing button TextI tried function replace string.. but as I don’t know your origin wording (it is not Select language) for the button I can’t change it.
All I need is the word Google somewhere in the button..
tried to change value or use :before via CSS but can’t find the correct hookThere must be a trick.. please think again pretty pretty please ??
Forum: Plugins
In reply to: [Automatic Translator with Google Translate] Changing button TextAH… and I forgot:
the name of my company should not be translated (the translations are really horrible :)) There must be a possibility via php to exclude a string from translation..
Forum: Plugins
In reply to: [Shariff Wrapper] eigenes Icon Design der Buttonsok gel?st via CSS – falls jemand Interesse hat einfach bei mir melden.
Forum: Plugins
In reply to: [Sequential Order Number for WooCommerce] adding current year to prefixG R E A T you are my H E R O!!!
So once you update I simply take this snippet out, right?
Forum: Plugins
In reply to: [Sequential Order Number for WooCommerce] adding current year to prefixsomehow I cant add screenshots here.. sorry
imported orders are now: #prefix_2020_01_0001
new order: #0002- This reply was modified 5 years ago by Dumbo16556.
Forum: Plugins
In reply to: [Sequential Order Number for WooCommerce] adding current year to prefixOK i solved the problem for past orders but NOT FOR NEW ORDERS… ??
add_filter(‘wt_order_number_sequence_data’, ‘webtoffee_order_number_sequence_prefix’, 10, 3);
function webtoffee_order_number_sequence_prefix($order_number, $prefix, $order_id) {
$order = wc_get_order($order_id);
if (is_object($order)) {
return “Yourprefix_” .date(‘Y’, strtotime($order->get_date_created())) . “_01_” . $order_number;
} else {
return $order_number;
}
}this finally returns: Yourprefix_2020_01_0001 (0001 = ordernumber)
but new orders do only show the ordernumberForum: Plugins
In reply to: [Sequential Order Number for WooCommerce] adding current year to prefixNEARLY THERE.. (sorry) you are going into the right direction ??
The year works now but instead of adding the sequential number it ads the buyer name.. strange
Forum: Plugins
In reply to: [Sequential Order Number for WooCommerce] adding current year to prefixThank you very much for your help. Unfortunately it adds the date from today to all orders instead of the order date…
besides I was incapable of adding a prefix to the year but that’y a minor problem ??
Forum: Plugins
In reply to: [Sequential Order Number for WooCommerce] adding current year to prefixis there anything I can add in the meanwhile to your php? Or do you have an idea when this will be added i.e. next update in 6 weeks??
Thank you very much for your fast supply
1) on your helpdesk
2) If I implement the rating via gutenberg yes the reviews do have a filter and no your shortcode has NO possibility to filter by stars.. If so please you should be able to write me this shortcode..as in your explanations I can’t find anything but
[cusrev_all_reviews sort=”DESC” per_page=”10″ number=”-1″ show_summary_bar=”true” show_pictures=”false” show_products=”true” categories=”” products=”” shop_reviews=”true” number_shop_reviews=”-1″ inactive_products=”false” show_replies=”false”]Beside i would love to display a 4,9 of 5 stars for ALL reviews on the shop.
How do I achieve that. In order to display the number of reviews I use $comments_count->approved I would need to divide them by count_ratings but I really don’t know how
The result of the shortcode should be something like..
“This shop has 4.8/ 5stars from 1000 reviews”Forum: Fixing WordPress
In reply to: How to enregister grouped css filesok I’ll give it a try thx