erwanpia
Forum Replies Created
-
@laudag well done, I myself cannot modify the existing templates so for those who still use the code hack for the wp-content/plugins/elementor-pro/modules/posts/skins/skin-base.php line 1000, function render_loop_footer , I should mention that $links is actually an array so here’s an update :
if (is_array($links)) foreach($links as $k=>$v) if (!strstr($v, "/page")) { $links[$k] = preg_replace('/\/(\d)/', "/page/$1", $links[$k]); }
@davidr90 what do you think ? any work in progress on that issue ? thanks ??
Thanks that would answer the first question, second question is can we link to posts filtered by the tag AND the current catogory when displayed on category archive page ? thks
@davidr90 quick fix, works, but worth noting for future versions because updates obvious:y break the hack, already opened a support ticket a few months ago… ?? Remember The Milk !!!
@davidr90 for your information and verybody using posts widget with pagination, I have a quick fix here that works on the base skin, it replaces /2 /3 /3 to /page/2 page/3 /page/4, add following code in wp-content/plugins/elementor-pro/modules/posts/skins/skin-base.php line 1000, function render_loop_footer :
BEFORE :
$links = paginate_links( $paginate_args );
AFTER
$links = paginate_links( $paginate_args ); $links=str_replace("/2","/page/2",$links);//<--* breizhwave2020-10 $links=str_replace("/3","/page/3",$links);//<--* breizhwave2020-10 $links=str_replace("/4","/page/4",$links);//<--* breizhwave2020-10
Forum: Plugins
In reply to: [Cost Calculator Builder] console ErrorThanks @stylemix : as written above, problem solved by removing single quotes in option labels.
another question while you’re here : any plan of developping database records of user interactions ? I love your plugin’s interface, but need database records like https://codecanyon.net/item/cost-calculator-for-wordpress/21709867
last question : in the summary of totals, is it possible to display sub totals quantity with pricing ? usual quote behaviour ??
thanks for your answers anayway !!
Forum: Plugins
In reply to: [Cost Calculator Builder] console ErrorOK found why : you’re probably using single quotes in textss
Forum: Plugins
In reply to: [Cost Calculator Builder] console ErrorSAme here, does not render radio fields
Uncaught TypeError: Cannot read property ‘forEach’ of undefined
- This reply was modified 4 years, 6 months ago by erwanpia.
Thanks for the answer : I was actually mentionning the admin feature: with VC you can reduce a section while editing, very useful on long pages while editing or moving sections around
You’re right, and I’m sorry for the question because your answer made me realize that I had setup a background for the text element, not the column, that’s why they were not equal heights… Thanks for answering, problem solved
Hi @boaz, fortunately I really like Elementor and really needed that feature. I publish here a quick Js / Css hack that will create a tooltip out the native generated alt text. Enjoy and let me know what you think :), can be useful took me quite a while to get that so I thought I might share.
https://www.webmasterbulletin.net/2016/11/elementor-hover-tooltip-carousel/2373
shortcode only, will try the widget and let you know
same here ?? no templates in library
PROBLEM SOLVED : I was with wordpress 4.4.4
with a good update to wordpress 4.5.3 it now works perfect again
thanks for your support it really helps and now you know Elementor TOGGLE requires latest wordpress, which is very good practise ??