nikasama83
Forum Replies Created
-
Forum: Plugins
In reply to: [Sponsors] Image size ignored in widget>it can’t create a larger image from it
>(no image code library that I can think of
>can do that through code).… i would never expect WP to invent a larger size image and nowhere in my post it was stated as the problem. I found your reply arrogant.
The plugin is ignoring the “full” size request and using medium size or smaller (even when cropped). Issue is unresolved.
Forum: Plugins
In reply to: [WooCommerce] archive-product.php template overwrite not working.SO since i didnt get any support from woo i end up spending a large amount of time looking for the problem … and a solution.
Issue: archive-product.php custom template would get completely ignored.
Problem: woocommerce-template.php, woocommerce_content() function is wrong for any archive product case.
quick solution: on your woocommerce.php template you created instead of
woocommerce_content();
use this logic:
if ( is_singular( 'product' ) ) { woocommerce_content(); }else{ //For ANY product archive. //Product taxonomy, product search or /shop landing woocommerce_get_template( 'archive-product.php' ); }
This will call your woo template, that would be YOURTHEME/ woocommerce/ archive-product.php and you wont have to edit any file inside the plugin folder
I hope this helps anyone with a similar problem that did not buy their theme.
Forum: Plugins
In reply to: [Widget Context] Widget Context 0.8.1 Releasedsame as skdenmark stated.
BUG: is_dynamic_sidebar still returns true even though there is no widgets for the page.
WP Version 3.5.1; Widget Context Version 0.8.1
Forum: Reviews
In reply to: [Widget CSS Classes] Perfectyeah, i was thinking about my comment this past weekend. I should have given it a longer thought before posting. My fail xD.
Mhhh… i will give it a try as soon as i can. Thanks
all custom types declared by us used init, and yes they have unique names.
oh, no plugin for that just creating their rewrite rules when registering the custom type
'rewrite' => array('slug' => 'song' , 'with_front' => false ) 'has_archive' => true,
What i meant is that after saving event manager settings https://www.website.com/song/ or https://www.website.com/song/song-name/ would give me 404 and we get a blank permalink page.
before the update it was using init:
function my_connection_types() { if ( !function_exists('p2p_register_connection_type') ) return; p2p_register_connection_type( array( 'id' => 'sets2model', 'from' => 'sets', 'to' => 'modelsprofile' ) ); p2p_register_connection_type( array( 'id' => 'wall2model', 'from' => 'wallpapersextras', 'to' => 'modelsprofile' ) ); } add_action('init', 'my_connection_types');
after update i also tried this, wp_loaded:
function my_connection_types() { if ( !function_exists('p2p_register_connection_type') ) return; p2p_register_connection_type( array( 'id' => 'sets2model', 'from' => 'sets', 'to' => 'modelsprofile' ) ); p2p_register_connection_type( array( 'id' => 'wall2model', 'from' => 'wallpapersextras', 'to' => 'modelsprofile' ) ); } add_action('wp_loaded', 'my_connection_types');
Deactivated and activated plugin after this change.
Forum: Plugins
In reply to: [Taxonomy Widget] No custom taxonomies to display?when you are setting your custom types and taxonomies you need to set the priority.
add_action('init', 'post_type_books', 0 ); // where 0 is high priority function post_type_books() { register_post_type( ...... ) };
this fixes it
ahhhhh, im loving the new features you added. Thank you.
I have a request/question:
How do i set the Thumbnail Custom Field Name to actually use the Featured Image from the post/custom type ? Can i define what size of thumbnail to use?
If this is not possible right now, it would be nice to add it.
Thanks again!
Forum: Fixing WordPress
In reply to: Site not showing in IE but is in all other browserswell, you have a conditional for rounded border behavior for anything lower than IE 9.
Remove it from the <head> tag and only use it on the style.css (or the other way around), check the instructions for using that .htc, check the mime types allowed (maybe is not allowed) or look for different solution for rounded borders.
Forum: Fixing WordPress
In reply to: Linking Categories to Pages?are you using wordpress menu system?
Appearance > Menus