bkdimri
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: problem with grey box in slidnigadd this to your css
.nivo-caption{ display: none !important; }Forum: Fixing WordPress
In reply to: Header Photo Issuecan you edit the css? if yes the edit the folowing css class
from
.imgWrap img { margin: 0 auto; display: block }to
.imgWrap img { margin: 0 auto; display: block; width: 100%; }Forum: Fixing WordPress
In reply to: Woocommerce Product Imageswhy is the sizes set to max 150?
sizes="(max-width: 150px)Forum: Fixing WordPress
In reply to: Woocommerce Product Imagesif you see the html it shows the following
<img src="http://www.monkeytastic.co.uk/wp-content/uploads/2016/03/image-10-e1457782892759-150x150.jpeg" class="attachment-shop_single size-shop_single wp-post-image" alt="image" title="image" srcset="http://www.monkeytastic.co.uk/wp-content/uploads/2016/03/image-10-e1457782892759-150x150.jpeg 150w, http://www.monkeytastic.co.uk/wp-content/uploads/2016/03/image-10-e1457782892759-300x300.jpeg 300w, http://www.monkeytastic.co.uk/wp-content/uploads/2016/03/image-10-e1457782892759-768x768.jpeg 768w, http://www.monkeytastic.co.uk/wp-content/uploads/2016/03/image-10-e1457782892759-1024x1024.jpeg 1024w, http://www.monkeytastic.co.uk/wp-content/uploads/2016/03/image-10-e1457782892759-90x90.jpeg 90w" sizes="(max-width: 150px) 100vw, 150px" height="150" width="150">since the theme is responsive, it is using image srcsets. The largest image in the srcset is 1024×1025 pixel wide. so ideally it should show the largest resolution for large screens. SOme how its not doing it.
Forum: Fixing WordPress
In reply to: How to Remove Infolinks ads from WordPress?i cant see any ads on the home page
Forum: Fixing WordPress
In reply to: How to Remove Infolinks ads from WordPress?can you share the URL of your site?
Forum: Fixing WordPress
In reply to: Woocommerce Product Imageshave you uploaded different image resolutions? like 150×150, 300×300 etc?
Forum: Fixing WordPress
In reply to: Woocommerce Product Imagescan you share the URL of your site?
Forum: Fixing WordPress
In reply to: How to Remove Infolinks ads from WordPress?Forum: Fixing WordPress
In reply to: I want to remove 'Permalink' option from comment section of my bloghi dave there is a easy way and a not so easy way
1) Easy way . add the following at the end of the style.css file which is located in the root of your theme folder.
.comment-permalink{ display: none !important; }2) Not so easy way. Make changes to the functions.php file which is located in the inc folder of your theme
change from this on line 422
printf( __( '<a class="comment-permalink" href="%1$s">Permalink</a>', 'spacious'), esc_url( get_comment_link( $comment->comment_ID ) ) );to this:
//printf( __( '<a class="comment-permalink" href="%1$s">Permalink</a>', 'spacious'), esc_url( get_comment_link( $comment->comment_ID ) ) );Forum: Fixing WordPress
In reply to: Found a javascript code in my theme header. Is it some hack?looks like some kind of code was injected in you page and its wrting a script tag in your document. The script has a scr to some external domain/website. I would suggest scan your site immediately on https://sitecheck.sucuri.net/
Also remove the script from your header and follow all the security measures to secure your site. Thee are lot of posts in this forum whcih tell you how to do it.Forum: Fixing WordPress
In reply to: If only 1 product in category, can it link to that product?insert the following in your theme’s function.php
function stf_redirect_to_post(){ global $wp_query; if( is_archive() && $wp_query->post_count == 1 ) { the_post(); $post_url = get_permalink(); wp_redirect( $post_url ); } } add_action('template_redirect', 'stf_redirect_to_post');the main content of your site is insde the #primary div. Which is 750px wide. I guess this theme has a sidebar also. Your main image width for hiresolution/large screens is greater than 750 pixels. The img tag in the css has max width of 130% which is causing this issue
What you car try just to test is write the following at the end of your css fileimg{ max-width:100% !important; }Forum: Fixing WordPress
In reply to: Edit a single pageis it a permission issue? are you login in as the same user who authored the page?
can you edit your css file?