deezlee
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal for WooCommerce] PayPal Button on Checkout in wrong place.Hi,
Thanks for the great plugin.
I’ve installed the dev version, but “paypal express” can’t be selected as the default payment option. Any ideas?Forum: Fixing WordPress
In reply to: Woocommerce Store Notice Covering Top Bar in MystileYes i have the site-wide text enabled. The problem is that it covers the shopping cart links at the top of the page. Thanks.
Forum: Fixing WordPress
In reply to: Woocommerce Store Notice Covering Top Bar in MystileOK so I just I noticed that the login info has been edited.
How do you propose that I get help on a site that is in maintenance mode?Forum: Fixing WordPress
In reply to: Woocommerce Store Notice Covering Top Bar in MystileWhoops, songtogtech I hadn’t refreshed this thread so I didn’t see your post.
Mystile is a free theme so I don’t have access to premium support.
I’ve asked the question on their forum as well, but this forum is more active with experienced users.Forum: Fixing WordPress
In reply to: Woocommerce Store Notice Covering Top Bar in Mystileduh. geez thanks man
Forum: Fixing WordPress
In reply to: Woocommerce Store Notice Covering Top Bar in MystileOh, I didn’t realize that you were offering help! Thank you .
The blue bar at the top of the page is the notice-bar that is covering up the cart and search area.
I’ve now activated the site-wide notice and set up a test account so that you can see the site (it’s under construction).
[user crendentials moderated – do not post login info in these forums]
Thanks again
Forum: Fixing WordPress
In reply to: Woocommerce Store Notice Covering Top Bar in MystileI don’t have the notice activated because of the problem so there’s nothing to link to.
ThanksForum: Fixing WordPress
In reply to: Woocommerce Store Notice Covering Top Bar in Mystilesorry for the *bump*, but does anyone know the answer?
Forum: Fixing WordPress
In reply to: Woocommerce Store Notice Covering Top Bar in MystileI have the same question.
thanks in advance.Forum: Plugins
In reply to: [G Web Pro Store Locator] hashtag link to map pin seems wrong.whoops, here:
https://elysiummosaics.com/authorized-dealers/Forum: Plugins
In reply to: [Grid Products] Custom template for product?Figured it out:
In order for the Custom-Post-Template plugin to create a Product Post Type drop-down menu on the new/edit product page you need to add Kozaria’s code to your theme’s function.php page.
In order to use that code on a child-theme’s functions.php file you’ll need to add some code. Here’s Kozaria’s code wrapped in the other code needed.
if ( ! function_exists( 'my_cpt_post_types' ) ) { function my_cpt_post_types( $post_types ) { $post_types[] = 'grid_products'; return $post_types; } add_filter( 'cpt_post_types', 'my_cpt_post_types' ); }
Forum: Plugins
In reply to: [Grid Products] Custom template for product?thanks y’all (i had the same question),
I would like to use this code :
function my_cpt_post_types( $post_types ) {
$post_types[] = ‘grid_products’;
return $post_types;
}
add_filter( ‘cpt_post_types’, ‘my_cpt_post_types’ );but i want to use it in my child theme functions.php file.
would i need to use more code so that it works with the existing functions.php file?
any chance somebody knows what to add?
thanks againForum: Themes and Templates
In reply to: how can i add this function to my child theme's functions.php?Thank you both!
I’ll give it a try.
I’m at the point where i understand what you are talking about and i can read the code enough to understand what it does and use it, but i can’t write it myself. Thanks again!Forum: Themes and Templates
In reply to: how can i add this function to my child theme's functions.php?thanks for the help.
To be clear: i don’t want to edit the main theme (2011)’s functions.php. I want to add an empty functions.php page to my child theme and put the code in there.
So i can just drop the code in there?
I can’t test it right now.Thanks again for the response.
Forum: Fixing WordPress
In reply to: Image upload issues – Size reported as 0x0i had an image that was causing the same problem today. i looked at the metadata for a bunch of images and the problem image had no metadata for the image depth and color mode. i made another jpg from the psd in imageready and it worked fine and had the metadata. is there any way to make wordpress accept images that are missing that data? my client whose site it is won’t be able to troubleshoot images like this.
thanks in advance,
noah d