jeremynative
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Cant update anything after updateHi Nick,
I updated, my map continues to not be updated on the front end. I checked on multiple browsers, any changes I make on the backend don’t show up. They seem to work on my phone…
Forum: Reviews
In reply to: [WP Go Maps (formerly WP Google Maps)] Hard to install and no street viewHi Perry,
I figured out the api but the widget is giving issues;
Error: The map ID () does not exist
- This reply was modified 7 years, 9 months ago by jeremynative.
Forum: Plugins
In reply to: [WooCommerce] How do you add “Title/Name:” to product name on product page?I wanted to try to avoid messing with the php files in case the updates change them, but I received a working solution here, thank you for both of your help!
How to add label to Woocommerce title?
byu/jeremynative99 inWordPressremove_action(‘woocommerce_single_product_summary’,’woocommerce_template_single_title’,5);
add_action(‘woocommerce_single_product_summary’, ‘woocommerce_my_single_title’,5);if ( ! function_exists( ‘woocommerce_my_single_title’ ) ) {
function woocommerce_my_single_title() {
?>
<span>Title: </span><h1 itemprop=”name” class=”product_title entry-title”><?php the_title(); ?></h1>
<?php
}
}I’m using a theme that isn’t compatible with Woocommerce, so the title was affecting many of the menu and other items. This solution worked
- This reply was modified 8 years, 5 months ago by jeremynative.
Forum: Plugins
In reply to: How do you use pagniation on categories?Hi that plugin solved the issue I had thanks for the suggestion 🙂
Forum: Fixing WordPress
In reply to: How to remove author from category pages?nvm found out 🙂