Jilliank
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Construction Mode] Two issues – Background image & Mail chimp formI clear the cache frequently, and have done so a few times since installing.
I really don’t know how to fix these issues, and havent’ had issues with other plugins, since there is not a solution that I can apply to fix the issues, it looks like I’ll have to find another one
Forum: Plugins
In reply to: [WP Construction Mode] Two issues – Background image & Mail chimp formI am looking at the live page in the inspect element (hopefully, this is what you were talking about) and for the background image (which is blank in your plugin) it says :
background-image: url(https://www.jilliankerry.com/wp-content/plugins/wp-construction-mode/inc/img/bg_pattern.png);Forum: Plugins
In reply to: [WP Construction Mode] Two issues – Background image & Mail chimp formPlease clarify what page to go to? The “Under Construction” Page? I am not a tech person so I wouldn’t know what a JS error looks like or how to fix them?
Also, I had asked about the font colors not changing after I set them to a different color. They are still white and in the plugin I have them set to the same color purple as the social icons.
Forum: Plugins
In reply to: [WP Construction Mode] Two issues – Background image & Mail chimp formIt still does not work. I insert the url and it takes me to the media library. I click “insert to post” and the button does not work.
I’ve tried all 3 ways with both logo and background with the same (non)-results.
Forum: Plugins
In reply to: [WP Construction Mode] Two issues – Background image & Mail chimp formPlease, help! I have not received a reply to my issue.
I still cannot upload an image into the logo or background. When I go to the media library and click on the image I want, it acts like it will upload but then the box goes white and freezes.
Is there a trick to doing this? Does it need to be a certain size? Should it be out of Construction Mode first? Seems like it should be a simple upload.
Please, respond. Thank you, Jillian
Forum: Plugins
In reply to: [WP Construction Mode] Two issues – Background image & Mail chimp formYes, I have tried to upload images with media library, url and files from my computer. When I click on the button to upload the pop up box goes white and then freezes. It won’t let me close so I have to refresh my dashboard. This happens for both logo and background images.
It is in construction mode.
I will send you wp-admin through your private email, if you request.
Thank you
Forum: Plugins
In reply to: [WP Construction Mode] Two issues – Background image & Mail chimp formAlso, just tested this. I cannot change the font color, either. In the dashboard it is changed but not on the page.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Unlink Featured ImagesI found the resolution.
To remove links from woocomerce single products images File Manager;
wp-content;themes;(theme name); functions.php
Add following code:
function custom_remove_single_product_image_html( $html, $post_id ) {
return get_the_post_thumbnail( $post_id, apply_filters( ‘single_product_large_thumbnail_size’, ‘shop_single’ ) );
}
add_filter(‘woocommerce_single_product_image_html’, ‘custom_remove_single_product_image_html’, 10, 2);