pr0fess0r
Forum Replies Created
-
Forum: Plugins
In reply to: [Instant Articles for WP] Missing Ad Network errorThanks ??
Forum: Plugins
In reply to: [Instant Articles for WP] Content being stripped out between tagsAlso seeing this issue – we have a blockquote with no HTML inside (in the editor). The source view shows that WordPress is adding <p> tags inside the blockquote. The message from Instant Articles is “No rules defined for <p> in the context of Blockquote”
Forum: Plugins
In reply to: [Contact Form 7] Orange border failure started recentlyI have the same problem, it turns out to be the captcha in my case – if you have [recaptcha] in your form try taking it out and see if the form works.
If I disable WordPress ReCatpcha Integration so the login/registration forms dont have a captcha field, this has no effect on the issue with CF7. CF7 with Recaptcha, and WordPress ReCatpcha Integration, were both working fine together until recently. It seems only since WordPress 4.4.1 that the CF7 form is failing spam validation.
Are there other steps you recommend I try to identify the issue?Cheers
Note that Google NoCaptcha Recaptcha used in another plugin “WP reCaptcha Integration” to add a captcha to registration forms, works OK, so it seems to just be the integration between CF7 and Google NoCaptcha Recaptcha
Hi, yes I’d be keen to know if this integration occurred as well
Cheers
Thanks Hector, I hope you’re feeling better and I appreciate the time you put into supporting your plugin.
When the site is closer to completion I’ll use a plugin to regenerate all the thumbnails from the featured images (it’s possible the dimensions changed since they were originally created) and if there are still issues I’ll be able to point you to the site.Get well soon!
Hey Hector
The site is still in development, but here’s the code for the sidebar:
<?php wpp_get_mostpopular( 'post_type="post,recipe"&thumbnail_width=69&thumbnail_height=33&header_start=""&header_end=""&wpp_start="<section class=\'aside-listing\'><h2>TRENDING</h2>"&wpp_end="</section>"&limit=5&range=all&freshness=1&post_html="<article class=\'aside-listing-item\'><div class=\'aside-listing-item-thumb\'>{thumb}</div><div class=\'aside-listing-item-title\'><a href=\'{url}\'><h3 style=\'font-size: 12px;\'>{text_title}</h3></a></div></article>"' ); ?>
And here is the code in functions.php
add_image_size( 'full-page-width', 800, 400, array('center','center') ); add_image_size( 'small-panel', 386, 193, array('center','center') ); add_image_size( 'prev-next-thumb', 144, 69, array('center','center') ); add_image_size( 'sidebar-thumb', 69, 33, array('center','center') ); set_post_thumbnail_size(800);
In the WPP settings, “Pick image from:” is set to “Featured image” and “Responsive support” is enabled.
If I wanted to use ‘sidebar_thumb’ as my WPP image, how would I do that?
Cheers
Forum: Plugins
In reply to: [WordPress Popular Posts] Displaying Taxonomy Terms not categoriesOh awesome ?? Thanks Hector ??
Forum: Themes and Templates
In reply to: Can Custom Taxonomy archive and Term archive use the same file?Debugging WordPress rewrites I’m getting
recipes/([^/]+)(/[0-9]+)?/?$ => index.php?recipe=$matches[1]&page=$matches[2]
index.php exists, but it’s empty as I use front-page.php for my homepage, categories.php for my article categories, single.php for my article posts… now I’m trying to build the page structure for recipes.
Forum: Themes and Templates
In reply to: Can Custom Taxonomy archive and Term archive use the same file?I’ve made some progress.
My archive page is archive-recipe.php
My custom post type ‘recipe’ has been registered with
'rewrite' => array( 'slug' => 'recipes'),
So the URL is nicer – /recipes/
And it correctly links to archive-recipe.php
And get_term_link returns friendly URLs as well, i.e. Meals returns /recipes/meals/ BUT gives me a 404, would like this to also load archive-recipe.phpThanks guys, can you post updates as you progress? Really keen to use this new captcha ??