jtost
Forum Replies Created
-
Hi,
Thanks for your fast reply. I could fix the problem. There should have been some kind of browser cache settings issue.
Thanks,
JordiThanks for the fix @websupplements, it also worked for me.
I’m also using version 2.0.12.
I searched in the database and the fields are stored this way:
pie_textarea_6, pie_text_14, etc.
It would be great if in the form editor the admin could specify a custom id for each field, as other plugins like Cimy User Extra Fields or Register Plus Redux do. That would help my request in the main post.
Thanks!
Hi Héctor. I have the same problem here. I am using this plugin to manage events:
Your plugin is counting visits for posts and showing the popular posts with wpp_get_mostpopular but not for the events (CPT “tribe_events”).
Have you some advice regarding nkgeek’s comment?
Forum: Plugins
In reply to: [Hierarchy] Ordering Pages / CPT in the "Content" pageI found a workaround or at least the problem. The workaround explained above only happens when has_archive is set to true when registering the CPT. If has_archive is set to false, then it is shown this way:
– Our insights
– Social Engagement
– Team
–– Team ?Does it have an explanation?
Forum: Fixing WordPress
In reply to: Enqueuing scripts in footer does not working with WordPress 3.6?I found the problem.
One plugin had a PHP error and the footer wasn’t attached at all…
??
Forum: Fixing WordPress
In reply to: Enqueuing scripts in footer does not working with WordPress 3.6?I checked if wp_footer() is working with this hook:
function your_function() { echo '<p>This is inserted at the bottom</p>'; } add_action('wp_footer', 'your_function', 100);
And it seems that it isn’t called… I use it in my footer.php file right before the </body> closing tag.
Anyone has experienced the same problem? For previous versions of WordPress (<3.6) the code worked fine.
Thanks for your time.
Forum: Fixing WordPress
In reply to: Enqueuing scripts in footer does not working with WordPress 3.6?For example, if I use it (don’t set $in_footer)
function my_scripts_method() { wp_enqueue_script('flexslider', get_template_directory_uri().'/js/jquery.flexslider-min.js', array('jquery')); wp_enqueue_script('waypoints', get_template_directory_uri().'/js/waypoints.min.js', array('jquery')); // My functions file wp_enqueue_script('theme_functions', get_template_directory_uri().'/js/functions.js', array('jquery', 'flexslider', 'waypoints')); } add_action( 'wp_enqueue_scripts', 'my_scripts_method', 20 );
The scripts are enqueued und placed in the <head>.
But if I use it (setting $in_footer=true):
function my_scripts_method() { wp_enqueue_script('flexslider', get_template_directory_uri().'/js/jquery.flexslider-min.js', array('jquery'), null, true); wp_enqueue_script('waypoints', get_template_directory_uri().'/js/waypoints.min.js', array('jquery'), null, true); // My functions file wp_enqueue_script('theme_functions', get_template_directory_uri().'/js/functions.js', array('jquery', 'flexslider', 'waypoints'), null, true); } add_action( 'wp_enqueue_scripts', 'my_scripts_method', 20 );
They aren’t placed at all, neither before the </body> end tag or in the <head>.
I’m using wp_footer() right before </body>
Forum: Fixing WordPress
In reply to: Enqueuing scripts in footer does not working with WordPress 3.6?Hi esmi, thanks for your reply.
I reviewed the documentation but didn’t find the reason. I always use this method to place the scripts in the footer.
But since I last updated to WP version 3.6 they aren’t placed at all! Neither in the footer or in the <head>. They aren’t enqueued at all… It’s strange.
Has anyone the same problem?
Just add that “Referer” is working well on log-out.
Hi Jeff,
I have the same problem without bbPress. The steps I do are these:
1. I type in the browser a private page URL.
2. I get the WordPress login page
3. When I log-in, the site redirects to the profile page, instead to the private page that I want to visit.This is happening with a Subscriber user role, but also with the others. I thought it was because I was using WP Members to controle private content, but I have deactivated the plugin and the problem persists.
Thanks in advance for your help!
Forum: Plugins
In reply to: Making my AJAX powered WordPress CrawlableHi supergab, could you fix the problem?
I have to code a WordPress Site with AJAX Crawling.
Some information would be useful.
Thanks!
Forum: Fixing WordPress
In reply to: Query a single private page with query_posts or wp_queryThe same. It works when I’m logged in but doesn’t when I’m not.
Forum: Fixing WordPress
In reply to: Query a single private page with query_posts or wp_queryIt works if you’re logged in, but not for a normal visitor.
And I need the page to be private. If I specify a “pagename” or ID, for not logged users it doesn’t retrieve anything.
But for example, if I do a query like this:
$args = array( 'posts_per_page' => 3, 'post_type' => 'page', 'orderby' => 'menu_order', 'order' => 'ASC', 'post_parent' => get_the_ID(), 'post_status' => array( 'publish', 'private' ) // children are private );
It does also return the private pages.
It’s a WP core bug?
Forum: Fixing WordPress
In reply to: Query a single private page with query_posts or wp_queryHi esmi, thanks for your reply.
What I need is to query with WP_Query a given private page by ID or slug, but it doesn’t work. My query is:
$args = array( 'pagename' => 'here_the_page_slug', 'posts_per_page' => 1, 'post_type' => 'page', 'post_status' => array( 'publish', 'private' ) // or just 'private' ); $query = new WP_Query( $args );