Henry D.
Forum Replies Created
-
This didn’t fix the issue. The same thing happens if I create a new blank page with an empty widget, and load in plain text content. There is no caching and all theme files, plugins have been updated since my original post. I even tried deleting the plugin and reinstalling with no success.
Forum: Plugins
In reply to: [Age Gate] Prevent User From Re-entering DOB?That is what I had originally thought, but it doesn’t appear to be working for me. I have the user being redirected to a page if they are under the age limit; however if they click back in the browser and enter a new DOB they are taken to the age limited page. Is the redirect the issue? Perhaps I should remove the redirect and user error messaging instead?
I have a very similar request… needing dynamic file attachments based on a custom field value.
I have a select field that is dynamically populated with data from a custom field (ACF Repeater). Each option in the dropdown is a URL to an uploaded file.
Would it be possible to use these files as the chosen attachment?
Forum: Plugins
In reply to: [WooCommerce] Product categories have disappeared after latest update!I would hardly call this post resolved… since there isnt a fix we can apply right now and we are waiting for the plugin authors…
The only thing we know for sure is the issue lies specifically in the plugin code and not some conflict with a server setup/other plugin/theme/etc…
In the mean time we can downgrade back to 2.01.14 –> http://downloads.wp.xz.cn/plugin/woocommerce.2.0.14.zip
But as always; proceed with caution and good luck.
Forum: Plugins
In reply to: [WooCommerce] Product categories have disappeared after latest update!I can also confirm that this is happening. I tried deleting the widget + making new categories and no luck.
Hello and thank you!
I followed the steps you provided and it worked perfectly. Not the most apparent thing, but it worked.
I also can see where to edit the paypal info now – I think the problem before was that the iframe wasnt loading in the content completely and the design was broken. Seems to have been just a temporary fluke/connection issue on my part.
Thanks again!
Forum: Plugins
In reply to: [File Gallery] File Gallery Plugin – Simple Template not workingOk! I got them to play together nicely!
I did not have to use the hack from the thread I linked previously…
Rather I went back to the Analyticator plugin settings to see if I could find a reason that is was not defining the File Types. I couldnt find anything specific, but I did change one thing: I set the plugin to not track all users: admin, editor, author, contributor.
I just logged out and logged back in and verified that File Gallery now uses the Simple template regardless of user role or login status 🙂
So its seems to have been a javascript error with Google Analyticator stopping File Gallery from properly displaying its template.
Thank you Aesqe for your help!
Forum: Plugins
In reply to: [File Gallery] File Gallery Plugin – Simple Template not workingHello Aesqe!
I am indeed running FF and in the error console I have only 1 error and a ton of warnings. The warnings are all missing declarations from the ShareThis plugin I am using… not relatedHowever the 1 error I do have is coming from the Analyticator plugin: specifically “analyticsFileTypes is not defined” … I am more of a html/php guy so javascript isnt my strong suit, but I did find another thread discussing this very error here: http://ww.wp.xz.cn/support/topic/plugin-google-analyticator-throws-exception-in-wp-31?replies=2
I am going to attempt the fix mention in that thread and get back here with my results!
Forum: Plugins
In reply to: [File Gallery] File Gallery Plugin – Simple Template not workingHello Again!
Just wanted to update you all and let you know that I tracked my problem down to a conflict with a specific plugin on my client’s site: Google Analyticator.I tested the File Gallery plugin on a fresh install and all was well – so no problem with the File Gallery plugin 😉
Then I went back to the client installation and deactivated all plugins – turning them back on one by one until I found the culprit… and after activating Google Analyticator I could no longer create a post using the Simple template in File Gallery – it will instead render without the necessary container div tags.
I am not sure exactly what is the issue, but for anyone else having a similar problem you might want to check if these two are having a conflict.
One more thing,
I tried using ex_cats on custom taxonomies and again the links fail to load. here is the code I was testing:<?php previous_post_link_plus( array( 'loop' => true, 'ex_cats' => '12 and 14', ) ); ?>and im just using the normal WP loop on a custom single template … and in my main single.php file I am using a conditional statement to load a specific single template depending on the taxonomy. sorry for overloading this thread!
Forum: Fixing WordPress
In reply to: Navigation between custom post types@iwanttobelieve:
I have tried using your filter and am getting the following error…implode() [function.implode]: Invalid arguments passed in /home/blah/blah/blah/myurl/functions.php
its this line that seems to be the issue:
$join .= " AND tt.taxonomy = '$current_taxonomy' AND tt.term_id IN (" . implode(',', $cat_array) . ")";I noticed that @tradiart solved his initial problem using the Ambrosite Next/Previous Post Link Plus plug-in, but that is also cause me problems. So could you please advise me as to what I might need to change in order to get this to work. thank you in advance!
Ok so I have made some progress in that the links will always load now … I erased all my previous code and started fresh. However they are still linking to the incorrect projects.
For example:
If I am viewing the 4th Post in the taxonomy “Print” than the next and previous links should be to the 3rd and 5th posts… but they are still linking to the adjacent posts from the main parent taxonomy “Type” …So here is some back story:
My custom post type is called “Projects” with a custom taxonomy of “Type” – where the children of “Type” are “Print”, “Digital”, “Identity”, etc…So Im viewing a single Project in the Type “Print” and would like the prev/next links to only paginate between project in the same Type. Can this be done?
Thank you!
@ambrosite:
Thank you for your quick response. To answer your questions, no I am not experiencing the problems using the default next/prev post links using normal categories. But if I use those functions on the single.php template that handles my custom taxonomy then the default links fail to load as well only if “in_same_cat” is set to true.The page itself is always loading and I would say 99% of its content shows up, but not the links and the little loading bar in the bottom of Firefox never reaches the end and says “waiting for http://www.mysite.com” with mysite.com being my clients domain name of course 😉
Also I have tried this with loop set to both TRUE and FALSE and in an array and a single line declaration.
Someone else had the same problem as me and your plugin fixed it for him… so its most likely something I am doing wrong.
http://ww.wp.xz.cn/support/topic/navigation-between-custom-post-types?replies=9
I will post back here any updates – thanks you for helping!
Forum: Themes and Templates
In reply to: Numeric pagination of all posts in the single.php templateOk so I havent figured out a complete solution yet – but I did find something that may help others out there so I thought I would share my results. I really just needed a list of 8 posts from the same Taxonomy to appear on the Single.php template page but rather than the titles being the clickable text I would have liked them to be numbered boxes – similar to WP-Pagenavi and others …
What I was able to do was create a new loop further down in the template file and count each result and instead of displaying the_title(); I just echoed the count. Now I have a series of list items with linked numberes and although its no where near as robust as a plugin (no “first/last” links, no skipping large portions “10,20,30…”) I does work for my current needs and I hope the following code will help others. please post any additions and whatnot here to share as well.
<?php $count = 1 ?> <?php $currentpost = get_the_ID(); ?> <?php $my_query = new WP_Query(array( 'your-taxonomy' => 'specific taxonomy', 'posts_per_page' => 8 )); while ($my_query->have_posts()) : $my_query->the_post(); ?> <li class="page-numbers" <?php if($currentpost == $post->ID) { echo ' id="current" '; } ?>><a href="<?php the_permalink(); ?>"><?php echo $count; ?></a></li> <?php $count = $count + 1 ?> <?php endwhile; ?>Ok I hope my Franken-code can help someone!
Peace & Good Fortune!Hello
I am currently testing this plugin with WP 3.0 and using Custom Post Types with a Custom Taxonomy and experiencing problems.The “in_same_cat” feature is not working – in fact if I set this to TRUE or 1 than the links never appear and the page fails to load completely. If I remove the term than it loads fine but of course paginates between all taxonomies …
Thank you for your work with this plugin! Works great for everything else!