ginarenate
Forum Replies Created
-
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] How to use post excerpt in tooltipYou are so awesome, all works well +10. Thank you, thank you, thank you.
I have another project of mine and I’ll buy the pro version of tooltipy to create my glossary.
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] How to use post excerpt in tooltipOh, what a quick response!
I have a tooltip in this page.
On mouse over you can see all post text in tooltip, even it has an excerpt (short description).
In tooltip I want the short description not all post, it’s too long.
Forum: Plugins
In reply to: [Simple Job Board] Can't hide the excerptThank you for your quick response. Sorry for my delayed response ??
2. My test url is: Jobs. The sidebar is in the left and jobs as widget text with shortcode.
3. For everyone who use Avada, I post my solution for the left sidebar. For the right sidebar, delete style float right and left from div’s.
a.Create simple_job_board folder in your child theme and add 2 pages from the plugin template: wrapper-start.php and wrapper-end.php.
b.In wrapper-start.php add the code:case 'Avada' : echo '<div style="float: right;" id="content">'; break;
c.In wrapper-end.php add the code:
case 'Avada' : echo '</div><div id="sidebar" class="sidebar fusion-widget-area fusion-content-widget-area" style="float: left;">'; generated_dynamic_sidebar(); echo '</div>'; break;
Have a nice day
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Multi-day viewOk, thank you for the fast response.
Forum: Plugins
In reply to: [Phimind Excel Export Plus] With WP 3.8 Excel Export page is emptyToday I discovered that Google Analyticator conflicts with PhiMind, and when I disabled it PhiMind works again. Yupeeee! Many thanks for this plugin.
Is good for SEO reports because it knows Custom fields and recognize all Yoast’s custom fields if they are used.
Note: Previously (2 months ago) I dezactivated all plugins, except PhiMind and it didn’t worked. Deleted and reinstalled and nothing then.
Forum: Themes and Templates
In reply to: Woocommerce number of products displayedAll that can be fixed quickly if you have access on server. Can you?
Forum: Themes and Templates
In reply to: Woocommerce number of products displayedSorry for the mess, it’s my fault, I mistyped the end of the function. Do you have access on server?
The file functions.php is located here: /wp-content/themes/twentyeleven/functions.php. And here you can find the code you inserted, at the end of your file.
Forum: Themes and Templates
In reply to: Woocommerce number of products displayedIt’s missing semicolon at the end of the function.
add_filter( ‘loop_shop_per_page’, create_function( ‘$cols’, ‘return 12;’ ), 20 );Forum: Themes and Templates
In reply to: Woocommerce number of products displayedHi LucyM,
Add this function in functions.php of your theme to display 12 products per page:
add_filter( ‘loop_shop_per_page’, create_function( ‘$cols’, ‘return 12;’ ), 20 ).
What theme do you have? Because you must create a child theme with minimum style.css and functions.php that overrides the original ones.
The benefit to have a child theme is that when you upgrade your original theme the overrides are not lost.