Morris Gilles
Forum Replies Created
-
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] error messages java scriptThanks! Actually, I’m not sure if it’s the Sticky plugin or Advanced Floating Content. I’m afraid it may be Advanced Floating Content… So don’t bother in that case
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] Problem with “pushing-up” sticky elementHi,
Thanks for your reply. It happens on all pages where the elements I would like to push up is visible. It’s the same in all browsers (chrome, safari, firefox) /-:
Best,
MoritzForum: Plugins
In reply to: [Sticky Menu & Sticky Header] Push-up no longer worksApparently disabling the legacy mode worked now. I guess since I’m using two plugins for this, there are some bugs with the sticky functions… Anyway, it works now…
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] Push-up no longer worksHi,
thanks for your reply!
It’s weird, cause it worked before. Despite of the fact that the div is sticky even without your plugin, it was nevertheless capable of calling the push-up function /-: So something must have changed, but I have no idea what…
Forum: Fixing WordPress
In reply to: Show Title WO ParanthesesHi Steve, thanks for the info regarding the error console, will look into it!
I am not aware of having installed any plugins for displaying related posts, I thought the function is just website-internal…
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] PDF file nameHi there, it worked like a charm, thanks so much!!!
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] PDF file namePS I realize that the PDF filename cannot be italicized, but that is not the issue. The issue is that I cannot remove the italics HTML command from the filename while keeping it on the rest of my website…
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] show or hide div depending on scoll positionhi again,
ok, I fixed the problem. Apparently the plugin I used cloned the element, so I was using the wrong selector. So this is the final code:
(function ($) { jQuery(window).on("load resize scroll",function(e){ var y = jQuery(this).scrollTop(); if (y > 350) { var str = jQuery.cookie("afc_clicked"); if(str==""){ jQuery("#advanced_floating_content_637.advanced_floating_content.sticky-element-cloned").css('opacity', 1); } }else{ jQuery("#advanced_floating_content_637.advanced_floating_content.sticky-element-cloned").css('opacity', 0); } }); })(jQuery);
- This reply was modified 7 years, 5 months ago by Morris Gilles.
- This reply was modified 7 years, 5 months ago by Morris Gilles.
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] CSS HoverYeah, I tried it and weirdly it doesn’t work. Perhaps there’s something with my theme and/or a plugin interfering…
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Before ContentAwesome, thanks Emili.
Forum: Fixing WordPress
In reply to: Show Subcategory of ONE ParentMANY THANKS! It worked. This is my final code>
<?php $categories = get_the_category(); $separator = ' '; $output = ''; if($categories){ foreach($categories as $category) { if($category->category_parent == '61' ){ $output .= '<span class="post-category-info"><a>term_id ).'" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $category->name ) ) . '">'.$category->cat_name.'</a></span>'.$separator;} } echo trim($output, $separator); } ?>
- This reply was modified 7 years, 6 months ago by Morris Gilles.
- This reply was modified 7 years, 6 months ago by bcworkz. Reason: code fixed
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Before ContentI have found an inelegant php solution (see PDF link above), would still appreciate general advice on the possibility of working with filters (as mentioned, I just want to know WHERE I have to add the filters). Thanks!
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Show footer on PDF only on the last pageHello Michael, I know this question is sort of silly, but where (that is into which .php file(s)) do I insert the function and filter to make your solution work? Thanks!
Forum: Developing with WordPress
In reply to: Display Posts by AuthorFound a php way after 3 days of tweaking yessssss
Forum: Plugins
In reply to: [SVG Support] Help: SVG files brokenHi Ben,
Thanks so much for your reply. I wrote you an email with the login details. Perhaps it would be best if you could have a look?
Cheers