chrisbo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to display terms like posts / sync custom post term ?Cool!
I was just trying this plugin ?? and no need to translate, I’m French ??
If I understand, this solution allow to print a “static” list of Brands (terms) with images.But, I’d like users to be able to dynamically filter brands…
A brand should have several ACF fields associated:
ONE “brand” term, some “product type” terms, “activities” terms, year, country, etc…In my sidebar, I want a widget allowing to filter the brands who are selling tents (product type) for camping (activity) in Europe (area)? for instance.
The simplest way would be to be able to treat brands like posts, then filter them using ACF fields or taxonomies, no? So I go back to my questions…
How to display ctax_brand terms among posts?
OR
How to sync ctax_brand terms with cpt_brand posts?Else I could code my own filter allowing to filter each term list I have, but it’s not very flexible and too much complexity for me.
Forum: Plugins
In reply to: [Code Snippets] Page not found when savingWhich plugin please?
I had WP-SpamShield… removed
Jetpack protect… disabled
My most suspicious plugins are disabled and I still have this issue.There is also a problem near “!” character, I don’t know exactly the exact syntax.
When I try to save, I have a white page (even in debug mode) staying at the same URL /wp-admin/admin.php?page=edit-snippet&id=31&result=updatedCODE_SNIPPETS_SAFE_MODE true change nothing
Forum: Plugins
In reply to: [Polylang] Polylang & ACF pro > taxonomy field load all translationsThanks for testing Chrystl
But my issue is specific to ACF 5, and I can not go back now.
Unfortunatly the Language option for ACF4+ plugin dont work with ACF 5. That why I try to bypass the problem by using the following rules in my group.Show this field group if
– Post type is equal Produt type (custom post)
– Post taxonomy is equal EnglishI have just understanding that my configuration probably can’t work this way because it just display the good ACF block but do not tell to filter by language.
But how do others ACF 5 users? There is no Language option for ACF4+ anternative? I do not want to switch to WPML, Polylang is perfect except this.
Forum: Fixing WordPress
In reply to: No .single-thumbnail class with custom postsI was able to display the featured image in custom posts using the following hack.
Edit intergalactic content-single.php and remove the ‘post’ == get_post_type() in
if ( has_post_thumbnail() && ‘post’ == get_post_type()) {Add this to functions.php to add a single-thumbnail class to the body.
function add_body_class_single_thumbnail( $classes ) {
if (is_single() and has_post_thumbnail())
$classes[] = ‘single-thumbnail’;
return $classes;
}
add_filter( ‘body_class’, ‘add_body_class_single_thumbnail’ );But it’s just a hack…
Forum: Fixing WordPress
In reply to: Missing thumbnails for ONE post imagesThink I found something…
I don’t know why WordPress seemd to generate wrong URL for thumbnails.1- Add this line to wp-config.php
define(‘WP_CONTENT_URL’, ‘/wp-content’);2 – Install plugin “Force Regenerate Thumbnails”
3 – Regenerate missing thumbnails
Forum: Fixing WordPress
In reply to: Missing thumbnails for ONE post imagesWhen editing a problematic images from media manager, I see that dimensions (ex: 1280×1024) are not specified in the right metabox.
BJ lazy load plugin also add a w=1 (width) parameter instead of the thumbnail size. But disabling the plugin do nothing.
When I re-upload a problematic image, I got a “HTTP error” but a new problematic image is created.
Forum: Everything else WordPress
In reply to: Wanted pluginFinally I found “Reaction Buttons” who seem to do the job for voting.
For the custom posts, I found “Custom Post View Generator” but it don’t work with WordPress 3.6.1 for the while.
But any other suggestions are still welcome. ??