peter-a
Forum Replies Created
-
Hola Miguel, I’d like to request this as a feature for a future version.
In other words, I would like to use this widget for subcategory purposes. So if I’m in Category 1, I would like to see only:
Category 1 Subcategory A [+]Subcategory B Subcategory C [+]Subcategory D Subcategory E
Would you please consider adding this functionality in a future version?
Forum: Hacks
In reply to: Forcing SSL Return For YouTube oEmbedUPDATE: Unfortuntely, both troutacular’s original code and my code caused a new problem — that the YouTube videos no longer resize automatically in my responsive theme. So I had to abandon this code.
Forum: Hacks
In reply to: Forcing SSL Return For YouTube oEmbedThank you troutacular! I was looking for a way to add YouTube’s privacy mode to the built-in YouTube embed (and embed shortcode), so I modified your filter like this:
//BEGIN Embed Video Fix - HTTPS and privacy mode function add_secure_video_options($html) { if (strpos($html, "<iframe" ) !== false) { $search = array('src="https://www.youtube.com','src="https://youtube.com'); $replace = array('src="https://www.youtube-nocookie.com','src="https://youtube-nocookie.com'); $html = str_replace($search, $replace, $html); return $html; } else { return $html; } } add_filter('the_content', 'add_secure_video_options', 10); //END Embed Video Fix - HTTPS and privacy mode
Embedding using youtu.be URLs didn’t work for me, so I changed that bit to youtube.com.
Forum: Plugins
In reply to: [Advance WP Query Search Filter] Tag SearchPlease add tag support to your search plugins!!!
Forum: Plugins
In reply to: [upPrev] Change "Read Previous Post" text?Hello Marcin, is this feature available in the current version (3.3.20)?
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Custom footer broken in 3.3.3Right now the site is not publicly accessible, but if you provide an e-mail address, I can send you a login.
Also, I have temporarily rolled back to v3.3.2 of the plugin as a workaround. But here’s how the relevant text appears in the source code:
<section class="entry"> <div class="printfriendly pf-alignright"><a href="https://www.printfriendly.com/print?url=https://mydomain.org/2013/10/fourth-in-a-series/" rel="nofollow" onclick="window.print();if(typeof(_gaq) != 'undefined') { _gaq.push(['_trackEvent','PRINTFRIENDLY', 'print', 'NULL']);} return false;"><span class="printfriendly-text2 printandpdf"><img style="border:none;margin-right:6px;" src="https://cdn.printfriendly.com/pf-print-icon.gif" width="16" height="15" alt="Print Friendly Version of this page" />Print <img style="border:none;-webkit-box-shadow:none; box-shadow:none;margin:0 6px" src="https://cdn.printfriendly.com/pf-pdf-icon.gif" width="12" height="12" alt="Get a PDF version of this webpage" />PDF</span></a></div><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.</p> <p class="copyright"><b>All content ? My Name, all rights reserved.</b><span class="delete-no"> No content may be reproduced by any means for commercial purposes or mass circulation without prior written permission from the webmaster. You are welcome to download for your own personal reading.</span></p>
I had to add that <span class=”delete-no”> tag because when I just used <p class=”copyright”>, everything after </b> was deletable in PrintFriendly. And the custom CSS had no effect.
Forum: Plugins
In reply to: [Co-Authors Plus] The guest author function doesn't work everywhere..OK, I managed to find the answer on wp-snippets.com:
Add this code to your functions.php file:
// Exclude glossary from search results add_action('init', 'codex_custom_init'); function codex_custom_init() { $args = array( 'exclude_from_search' => true, // the important line here! ); register_post_type('glossary',$args); } // END Exclude glossary from search results
Voilá, the glossary is excluded from search results.
Quick Cache 111203 and WP 3.4.1: With QC enabled, only blank pages (no source code at all) are served.
I second that!
Same problem. WordPress 3.3.1 + Fullscreen Galleria + [gallery] shortcode = no results. Only shows the standard WP gallery.
Forum: Fixing WordPress
In reply to: [Plugin: WP Minify] Plugin Strips away all CSS and JS filesI had the same problem when I tried WP Minify today. Does anyone know the answer?
Forum: Plugins
In reply to: [Uploadify] [Plugin: Uploadify] check.php not workingOK, one correction: I’m seeing the same “There is an error with the upload applet” message in Firefox and Opera as well.
Forum: Plugins
In reply to: [Uploadify] [Plugin: Uploadify] upgrade to 2.1.4 ?(Bump)
Forum: Fixing WordPress
In reply to: OLD permalink still displaying content?This is happening on my site, too. I’m using WP 2.7, and I can confirm it’s not a browser cache problem, because I’m seeing this on other browsers as well.
I renamed /category1/ to /category2/
Links like https://mydomain.com/category1/post-name-here.html still work, even though they should give a 404 error.
https://mydomain.com/category2/post-name-here.html also works.
Is this a bug?