paddyinthesun
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] All set up but nothinh showingThanks
for anyone else looking for this: you should add the megamenu to the elementor header and remove the WP existing built in menu.
- This reply was modified 2 years, 7 months ago by paddyinthesun. Reason: clarity
Forum: Plugins
In reply to: [WooCommerce] Product Category Page Texts@edismah use this https://www.wpmusketeer.com/code_snippets/add-description-products-woocommerce-product-category-archive/
There are 4 blocks of code and they all go into your functions.php, i would recommend using a child theme so updates don’t affect these changes.
**Remember to ignore the opening <?php tag in the code as this will already be in your functions.php file.
Forum: Plugins
In reply to: [WooCommerce] Product Category Page TextsThats great, i’ll check those out Sean.
I’m still surprised there is no simple Woo solution to this as it must be an issue for almost every site using Woocommerce.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] jetpack E_COMPILE_ERRORThanks for getting back Animesh, yes i found this advice online and removed the folder, then tried to re-install the plugin twice but resulting with the same error. Not sure what the problem is but i’ll have to give the plugin a miss for now.
Forum: Plugins
In reply to: [Yoast SEO] Yoast telling me the permalinks structure has changedYep, same here, the problem has been around on one of our sites for over 1 month now. It’s not an issue because i understand its just a warning so can be ignored but i’m sure its unsettling for more inexperienced users.
Nothing seems to get rid of the message so i hope Yoast will update their plugin soon and fix this.
Forum: Plugins
In reply to: [WP Bottom Menu] Search product not workingSame problem here, the settings are selected for “search for product” but the results are all posts. I’ve tried switching the settings but nothing works, any ideas?
Just an update on this as i just can’t wait for the WPvivid team to get around to this. I tried running a backup several times taking hours and never finished.
I tried everything to get this plugin to work, in the end i installed another backup plugin (updraftplus) and it worked, backup and restore in about 45 mins.
Hopefully the WPvivid team can sort out the issues with the plugin.
Forum: Plugins
In reply to: [WooCommerce] Product Category PagesHi Stuart,
Wouldn’t it be better to 301 the other way? Redirect /product-category pages to the current (already ranking) /category pages.
Thanks
Sorry for the bump, am i the only person having this problem? Must be others using this theme and noticing issues on mobile devices.
Hi,
First, congrats on a great plugin. I would like to also request the additional functionality to override the thumbnail size in the “Basic Compact Album”.Thanks
Forum: Themes and Templates
In reply to: [Magazine Basic] Unlink Sticky Post TitleThanks for the feedback. On my version of the theme, there is no content-header.php file so i assume its header.php that you are referring to.
I’m not very good at php but i think its a matter of adding a condition to stop the sticky post from making the title a clickable link. Can you help me with the code needed?
Forum: Fixing WordPress
In reply to: Unlink Sticky Post TitleThanks, i’ve reposted, hopefully someone can help there.
Forum: Fixing WordPress
In reply to: Unlink Sticky Post TitleMagazine Basic. Website can be seen here.
Forum: Fixing WordPress
In reply to: Text Background color / HeadingOk,sorted. For anyone who may need this also:
Remove the <h2> tags and add height=”x” in the <td> record.
<table WIDTH=100%>
<tbody>
<tr bgcolor=”#073776″>
<td colspan=”3″ align=”left” height=”10″>
<font color=”#FFFFFF”>Text</font>
</td>
</tr>
</tbody>
</table>Forum: Fixing WordPress
In reply to: Text Background color / HeadingOk, i’ve almost solved it by using a table:
<table WIDTH=100%>
<tbody>
<tr bgcolor=”#073776″>
<td colspan=”3″ align=”left”>
<h2><font color=”#FFFFFF”>Text</font></h2>
</td>
</tr>
</tbody>
</table>Only 1 problem remaining, the table height is slightly too large, how can i reduce the height of this single row table? Anyone??