halukkuruoglu
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Carousels with Owl] Latest Update Breaks Taxonomy DisplayHi, same here. Carousels with custom post types stopped seeing posts list to select. I downgraded to 1.4.1 and it is OK again.
Forum: Plugins
In reply to: [A-Z Listing] Letters display properly only to logged-in usersNevermind, I added all three css files via functions.php manually and it is working now.
Forum: Plugins
In reply to: [A-Z Listing] Letters display properly only to logged-in usersThanks for your reply. Here is the code at functions.php:
`add_action( ‘init’, ‘a_z_listing_force_enable_styles’ );
I also tried with 99.
The tricky part is when I login via wp-admin everything became OK on the page.
Forum: Plugins
In reply to: [Custom Post Carousels with Owl] variable width?Thank you @thehowarde for your quick reply,
I made it like you said with no luck, then I realized that what I want is not autoHeight but autoWidth; so I changed it to true and it worked!
So thank you very much, may be I wasn’t clear enough what I needed but you show me the way.
Please do add autoWidth property modifiable when you implement this update.Forum: Plugins
In reply to: [Custom Taxonomy Order] How not to sort a term in a particular pageThank you, you can close this topic
Forum: Plugins
In reply to: [Custom Taxonomy Order] How not to sort a term in a particular pageYou’re right, when I comment if lines nothing changes, so the function does not run at all I suppose.
I’ll give a try to the Query Monitor
ThanksForum: Plugins
In reply to: [Custom Taxonomy Order] How not to sort a term in a particular pageHi Marcel,
Sorry it didn’t work.
I also tried to add:
remove_filter( ‘wp_get_post_terms’, ‘customtaxorder_wp_get_object_terms_order_filter’ );
into your function (because it is the wp_get_post_terms which is used to call on the page) but I still get the list of the terms sorted.This is the code where I call the terms in single-book.php:
$terms4 = wp_get_post_terms( $post->ID, ‘sidetheme’ );
$my_sidethemes = ‘<br />’;
foreach ( $terms4 as $term4 ) {
$term4 = sanitize_term( $term4, ‘sidetheme’ );
$term4_link = get_term_link( $term4, ‘sidetheme’ );
if ( is_wp_error( $term4_link ) ) {
continue;
}
$my_sidethemes .= ‘‘ . $term4->name . ‘ • ‘;
}
What am I missing?Forum: Plugins
In reply to: [Custom Taxonomy Order] How not to sort a term in a particular pageThanks Marcel, I’ll give a try and get back to you
Forum: Plugins
In reply to: [WP Super Cache] Madang theme’s loader keeps turningAnyone?
Forum: Plugins
In reply to: [iyzico WooCommerce] 1.1.1 update errorsDüzeldi te?ekkürler
Forum: Plugins
In reply to: [Meta pixel for WordPress] Fatal error on activationThank you, great support