beamkiller
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] SEO XML Sitemap not updatingIn the meantime I have reinstalled the Yoast SEO plugin which SOLVED my issue.
Forum: Plugins
In reply to: [qTranslate X] CSS classes wrongly applied to menu in home pageI solved this in the meantime with code:
//Remove unwanted classes added by qTranslate //O nas jQuery("#menu-item-225").removeClass("current-menu-item active"); //Galeria jQuery("#menu-item-226").removeClass("current-menu-item active"); //Aktuality jQuery("#menu-item-227").removeClass("current-menu-item active"); //Termalne jQuery("#menu-item-228").removeClass("current-menu-item active"); //Kontakt jQuery("#menu-item-229").removeClass("current-menu-item active"); //Rezervacia jQuery("#menu-item-230").removeClass("current-menu-item active");
But my other code which is scrollTo is also not working after qTranslate-X.
$('a[href^=#]').click(function(){ event.preventDefault(); var target = $(this).attr('href'); $('html, body').animate({ scrollTop: $(target).offset().top - 63 }, 600); });
SOLVED too: qTranslate added absolute path instead just #page-id-53 anchor.
Updated jQuery://Kattintasok, hogy szepen oda menjenek, ahova kell $('#menu-item-225 a, #menu-item-226 a,#menu-item-227 a,#menu-item-228 a,#menu-item-229 a').click(function(){ event.preventDefault(); var target = $(this).attr('href'); var link = target.split('#'); //console.log(link[0] + "masodik: " + link[1]); var link2 = "#"+link[1]; //console.log(link2); $('html, body').animate({ scrollTop: $(link2).offset().top - 63 }, 600); });
Forum: Plugins
In reply to: [qTranslate X] CSS classes wrongly applied to menu in home pageDear John,
My issue is not so different. After installing qTranslate-X all my menu items in Primary Menu got the unwanted classes.
All my Menus are pointing to the same page, because its a onepage solution. with domain.sk/#galery anchor calls.
How can I solve this issue?
Added CSS classes: current-menu-item to all li, s then active class to.
I have this jQuery added which is good, when no qTranslate-X is installed.
jQuery(window).scroll(function() { //O nas if (jQuery("#page-id-53").isOnScreen(0.5, 0.5)) { jQuery("#menu-item-225").addClass("current-menu-item"); } else {jQuery("#menu-item-225").removeClass("current-menu-item");} //Galeria if (jQuery(".portfolio-list").isOnScreen(0.5, 0.5)) { jQuery("#menu-item-226").addClass("current-menu-item"); } else {jQuery("#menu-item-226").removeClass("current-menu-item");} //Aktuality if (jQuery("#page-id-215").isOnScreen(1.0, 1.0)) { jQuery("#menu-item-227").addClass("current-menu-item"); } else {jQuery("#menu-item-227").removeClass("current-menu-item");} //Termalne if (jQuery("#page-id-94").isOnScreen(1.0, 1.0)) { jQuery("#menu-item-228").addClass("current-menu-item"); } else {jQuery("#menu-item-228").removeClass("current-menu-item");} //Kontakt if (jQuery("#page-id-90").isOnScreen(0.6, 0.6)) { jQuery("#menu-item-229").addClass("current-menu-item"); } else {jQuery("#menu-item-229").removeClass("current-menu-item");} });
My webpage: https://karmonpark.kremelina.sk/
Thanks,
Peter.Forum: Fixing WordPress
In reply to: Thumbnails produces yellow linesThumbnails produces gray lines in white background
I tried to resize them to 500×500 and 220×220 with Regenerate Thumbnails plugin. Same issue.The #FFFFFF color changes to #FEFEFE in thumbnails in lines
Images:
No, it’s not a border issue :). Its resizing issue.
This is the original image:
https://www.naturpharma.sk/wp-content/uploads/2015/04/DSC_0744.jpgThis is the single image:
https://www.naturpharma.sk/wp-content/uploads/2015/04/DSC_0744-500×500.jpgAnd this is the category view: you can see the gray lines ??
https://www.naturpharma.sk/wp-content/uploads/2015/04/DSC_0744-220×220.jpgForum: Plugins
In reply to: [WooCommerce] Thumbnails produces gray lines in white backgroundThe #FFFFFF color changes to #FEFEFE in thumbnails in lines
The 500x500px image is ok, but the 220x220px is not
This is the original image:
https://www.naturpharma.sk/wp-content/uploads/2015/04/DSC_0744.jpgThis is the single image:
https://www.naturpharma.sk/wp-content/uploads/2015/04/DSC_0744-500×500.jpgAnd this is the category view: you can see the gray lines ??
https://www.naturpharma.sk/wp-content/uploads/2015/04/DSC_0744-220×220.jpgForum: Fixing WordPress
In reply to: Thumbnail Compression produces gray pixels on white backgroundHi,
I’m facing a same issue.
Did you ever manage to solve this issue?
My featured image in category view and wirhin related products produces yellow lines on white backgrounds.
I have 1000x1000px images, which are resized to 500×650(simple product) and 220×260(category view).
The simple prodcut images are okay but the category view and related products are blurred with yellow lines, which should be white.
Maybe, but I didn’t see the extension at that time, so I began to solve it by myself ??
I have rated you plugin and support ??
Thanks ??
Hi,
I found myself with this too, the plugin doesnt support Visual Composer shortcodes I think.
The problem on my site is, that the content is not opening in a popup.
danieliser: Can I contact you privately? Because my webpage is under construction for now.
Edited code ??
if(!isset($_COOKIE['agecontrol'])){ echo '<a href="#" class="popmake-18"> | 18+</a>'; echo ' <script type="text/javascript"> setTimeout(function() { jQuery(".popmake-18").trigger("click"); }, 3000); </script>'; $cookie_name = "agecontrol"; $cookie_value = "true"; setcookie($cookie_name, $cookie_value, time() + (86400 * 30), "/"); // 86400 = 1 day }
Hmm but in this way the cookie is doesnt set ??
I solved this with:
Targeting Conditions: On Entire Site
Added JS snippet:
setTimeout(function() { jQuery('.popmake-18').trigger('click'); }, 3000);
Forum: Fixing WordPress
In reply to: Comments 3171 but only showing 1No, they are all empty. In Trash is one comment. Pls see IMG2 ??
Forum: Plugins
In reply to: [Yoast SEO] Google Meta Data options are missingOk,
I found it in settings, but why it is turned off? ??
Forum: Plugins
In reply to: [qTranslate X] After installing plugin i got error in AdminSolved with updating WordPress to newest version.