onirisweb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: issue with ie about htaccessThis is version 10
Forum: Fixing WordPress
In reply to: issue with ie about htaccessFirst I believed it worked, but in fact not. So I edited this message to cange it by the one that you see above
Forum: Fixing WordPress
In reply to: issue with ie about htaccessIt’s the same ??
Despite the good credentials are entered, IE doesn’t recognize them.
Forum: Plugins
In reply to: display a specific category name in WoocommerceThanks for all your help. I will refer Woocommerce and come back to inform you if necessary ??
Forum: Plugins
In reply to: [WooCommerce] Woocommerce address before paymentWonderful it works !
I just wonder if it will stil work if I enable a Facebook login addon.I’ll try and if there’s any issue, I’ll come back of course ??
Forum: Plugins
In reply to: [WooCommerce] Woocommerce address before paymentHi terrytsang,
Thanks for your reply. I’ll try this function. I come back later…
Forum: Hacks
In reply to: wp_is_mobile doesn't work with my themeAs I already said, I tried to contact him several times, but every times he answers out of the subject.
I precise that I don’t look for somebody that will make all the work at my own place. I’m looking for suggestions to solve this issue.
For example, is there any php function for debugging and clear any conflict ?
Forum: Hacks
In reply to: wp_is_mobile doesn't work with my themeThemeforest. I also posted on the comments sections, but no positive answer.
Forum: Hacks
In reply to: wp_is_mobile doesn't work with my themeI can provide a demo : https://sagi-boutique.com/faqs/
If you watch the site on mobile, the small logo as it is in the desktop version should be shifted by a bigger one wrapped on a blue background. A button that expands the menu should appear on the bottom of this blue block. In fact, the logo render should be exactly the same as it is for the home page.
Forum: Fixing WordPress
In reply to: How to fix the full background in IE?Usually, the issues appears in CSS for ie because there is a space missing or added before and/or after the colon.
For example :
margin:3px
margin :3px
margin: 3px
margin : 3pxSo, try every option like my example applied to your filter property. It can be fixed like this. Otherwise, that’s the filter which is not good.
Forum: Fixing WordPress
In reply to: How to fix the full background in IE?Hi, it looks fine for me on ie. Have you solved this issue by yourself ?
Forum: Fixing WordPress
In reply to: Author page displays all the posts (filter doesn't work)If I use your code :
$post_args = array( 'category' => $category->term_id, 'type' => 'post', 'author' => get_query_var( 'author' ), 'suppress_filters' => false, 'orderby' => 'menu_order', 'order' => 'ASC' );
There is no post title displayed below the category title.
Forum: Fixing WordPress
In reply to: Author page displays all the posts (filter doesn't work)Thanks for your reply.
I tried, but no post was displayed when you click on +. I tried to change the following get_posts() query by query_posts and keep your array at the same time :
foreach($categories as $category) { $post_args = array( 'category' => $category->term_id, 'type' => 'post', 'author' => get_query_var( 'author' ), 'suppress_filters' => false, 'orderby' => 'menu_order', 'order' => 'ASC', ); $posts = query_posts($post_args);
In this case, I come back to my original issue : it displays all the blog posts.
Forum: Fixing WordPress
In reply to: Author page displays all the posts (filter doesn't work)Hi,
Thanks for your reply.
But actually I am novice in PHP coding, so I really don’t know how to use your information in my template.
I tried ton implement your code “get_query_var( ‘author’ )” after global $post; but it doesn’t work.
I’m really lost !!!
Could you clear how to use it ?
Forum: Hacks
In reply to: expand posts titles from a categoryI tried this one :
<ul> <?php $cat_args = array( 'orderby' => 'name', 'order' => 'ASC', 'child_of' => 0 ); $categories = get_categories($cat_args); foreach($categories as $category) { $post_args = array( 'category' => $category->term_id ); $posts = get_posts($post_args); echo '<ul>'; echo '<li> <span class="toggle"><a href="#" style="cursor:pointer;">' . $category->name.'</a></span></li>'; foreach($posts as $post) { echo '<div class="hiddenDiv">'; ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <div class="background-bar"></div> <?php echo '</div>'; } echo '</ul>'; } ?>
But still the same. It doesn’t work.