productioncat
Forum Replies Created
-
Forum: Plugins
In reply to: [Schema - All In One Schema Rich Snippets] How to choose proper type of post?Where is the form provided in plugin’s admin area? Please give a link. Thanks.
no answer?
My website has a bunch of free attractions such as http://www.niagarafreefun.com/niagara-free-attractions/
What’s the proper type I should choose for those posts. I like to include image for rich snippets.
Please help. Thanks.
Forum: Plugins
In reply to: wp-paginate plugin doesn't work with posts-for-page pluginI fixed it by adding short code on pages instead of posts. Thanks.
Forum: Fixing WordPress
In reply to: wp-login.php could not be found on this serverThe login page works well these days. Thanks.
Forum: Plugins
In reply to: [Posts for Page] Order by 'title' or 'rand'Thanks Yanibus!
I change $params[‘order_by’] to $params[‘orderby’]. It works! Your suggestion helped me out. I have an upcoming events list which really needs order by title because I add the date at the beginning of each event’s title.
Thanks again.
Forum: Fixing WordPress
In reply to: wp-login.php could not be found on this serverI use iPage. This issue started from yesterday.
I just received an Email from support@ipage-inc.com, they said it’s fixed, but I tried again and again still cannot login WordPress C-Panel occasionally. Sometimes, C-Panel will suddenly down during the webpage editing.
Here is ipage’s email.
[P11002237000000000] Unable to Access the Admin URL
Show Details
We are happy to report that the problem you were experiencing with accessing your WordPress Admin Dashboard is now resolved.If you experience any issues accessing the panel through yourdomain.com/wp-login.php , please use yourdomain.com/wp-admin .
Please let us know if you have any further trouble.We are continuing to investigate the cause of this problem and will be back in touch with you through this support ticket within the next 24 hours to let you know more about what happened and what we are doing to ensure the same problem does not occur again.
Forum: Fixing WordPress
In reply to: wp-login.php could not be found on this serverThe WordPress admin page sometimes work sometimes not. The hosting company told me it’s fixed, but I still have same issue occasionally.
Will W3 Total Cache plugin cause the problem?
Forum: Plugins
In reply to: [Posts for Page] [Plugin: Posts for Page] Feature request: WP-PageNaviIt’s fixed by putting short code on a page instead of on a post. But Another thing comes up. How to let pagination shows both on the top and at the bottom? Currently, I use wp_paginate on the POSTS FOR PAGE plugin, and it only shows on the top of the page.
Forum: Plugins
In reply to: [Posts for Page] [Plugin: Posts for Page] Feature request: WP-PageNavi[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
global $wp_query; $page_links_total = $wp_query->max_num_pages; if( function_exists('wp_pagenavi')) { $output .= wp_pagenavi( array( 'echo' => false) ); } else { if($_opts['cur_page'] > 1) { $output .= "<span class='pfpNav'>" . get_previous_posts_link($_opts['prevText']) . "</span>"; } if($_opts['cur_page'] < $page_links_total) { $output .= "<span class='pfpNav'>" . get_next_posts_link($_opts['nextText']) . "</span>"; } } wp_reset_query(); return $output; }Forum: Plugins
In reply to: [Posts for Page] [Plugin: Posts for Page] Feature request: WP-PageNaviI add the same code to posts-for-page.php
But why my pagination always leads to the same page (first page).Here is the link.
http://www.niagarafreefun.ca/niagara-events-complete-list/Thanks.
Forum: Plugins
In reply to: [Posts in Page] [Plugin: Posts in Page] Pagination?Need some help. How to let wp_paginate plugin work with your plugin? How to change the code? Thanks.