ewergreen
Forum Replies Created
-
The fix will only work with colorbox, NOT with highslide.
Just upgraded to Version: 3.3.5 and unfortunately this broke it again. Will implement the fix described by Hatrezie again, but would appreciate it if either this is fixed in the next version OR that it will specify that it isn’t fixed yet in the release notes so I will hold off on updating.
Thanks for the temporary workaround Hatrezie. Really glad to see you’ve implemented this Ronak. I was one of the people who originally requested it.
Forum: Fixing WordPress
In reply to: Show different sidebar on taxonomy pages when a default is setThanks stvwlf. For some reason that doesn’t work either. I’ll try tweaking it a bit later.
Forum: Fixing WordPress
In reply to: Show different sidebar on taxonomy pages when a default is setThanks for the help stvwlf. Sorry for mentioning “category”, I did indeed mean “taxonomy”. Don’t know why I mixed them up.
I placed the code after the check to see whether it’s a page or single, and before the check to see if it’s “default”. Might just be as simple as putting it in the wrong place, but would love to get your advice on where to put it to make this work as I’m unable to do so.
Forum: Fixing WordPress
In reply to: Wp_nav_menu(); ignores custom menu, displays postsThe problem you have is that you didn’t register the second menu. Go in to your functions.php file and look for something like the below. You’ll see that I have two menu’s there, which makes the whole thing work.
add_theme_support( 'nav-menus' ); add_action( 'init', 'register_my_menus' ); function register_my_menus() { register_nav_menus( array( 'menu-1' => __( 'Navigation Menu' ), 'menu-2' => __( 'Meta navigation Menu' ) )Forum: Fixing WordPress
In reply to: Breaking the loop breaks dynamic sidebar abilityThank you so much alchymyth,
wp_reset_query();fixed the problem. So stupid of me, sometimes you just need an extra pair of eyes – or maybe brains in this case… .Forum: Fixing WordPress
In reply to: Breaking the loop breaks dynamic sidebar abilityHaha, don’t like tables either, however: I’m showing my page content above the table and the table isn’t used for layout purposes, but is used to describe a number of objects that have the same properties, so belongs in this grid.
My code is valid when using the validator. When looking at the rendered code, the end-tags are in place. Just fyi:
There are a number of HTML tags in HTML4 and HTML5 that do not require the use of a closing tag for valid HTML. The reason that most of these tags don’t have a required end tag is because in most cases, the end tag is implied by the presence of another tag in the document.
The HTML output of the default table is displaying correctly and without problems, as is it displayed correctly on my site.
Removing all HTML code but the broken loop like below still gives me the same issue:
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <p>hi</p> <?php endwhile; ?> <p>test</p> <?php endif; ?>Forum: Fixing WordPress
In reply to: Breaking the loop breaks dynamic sidebar abilityThe
endwhile;is right after the part where I display the rows.
Full code can be found on pastebin: http://pastebin.com/0GfjypiZForum: Fixing WordPress
In reply to: adding a comments form to my posts & pagesAdd the below to your template where you want the comments to display:
<?php comments_template(); ?>I’m guessing this should go below the_content(); and:
<?php endwhile; else: ?>Forum: Fixing WordPress
In reply to: Add posts to a PageIt’s not entirely clear to me what you want. However, I think you are looking for the below. This way you can specify which posts you want the wordpress loop to include by using something like:
<?php query_posts(array('post_type'=>'post', 'additional parameters" => '...')); ?>
If you however have no PHP AND no WordPress experience, you might want to either read up on them or try finding a plugin that does this.Forum: Fixing WordPress
In reply to: Redirect gone wrong, asking for Category, but getting PageChanging the slug on the category worked as a quick fix, but would like to get a more permanent solution for this.
Forum: Fixing WordPress
In reply to: Create "page" to add products to a table via input fieldsBump
Forum: Fixing WordPress
In reply to: Conditional to check whether category has postsThanks, that solved it.
Tried calling this outside the loop using both ciii_category_images() and ciii_category_archive_image(); in my template and also received the following error.
Warning: Invalid argument supplied for foreach() in /home/myname/public_html/wp-content/plugins/category-images-ii/category-images-ii.php on line 233