obus3000
Forum Replies Created
-
I am with the same problem.
Pagination works, but links are not displaying correctly
Forum: Plugins
In reply to: [WP-PageNavi] Not moving from page 1Can you check again for this?
I believe its not resolved. Im passing the values like this:
wp_pagenavi( array( ‘query’ => $products) );And this is my custom WP_Query:
$store_page_setting = (is_front_page() && is_page_template(‘edd-store-front.php’) ? ‘page’ : ‘paged’ );
$current_page = get_query_var( $store_page_setting );
$per_page = get_option(‘posts_per_page’);
$offset = $current_page > 0 ? $per_page * ($current_page-1) : 0;
$product_args = array(
‘post_type’ => ‘download’,
‘posts_per_page’ => $per_page,
‘offset’ => $offset
);
$products = new WP_Query( $product_args );Forum: Fixing WordPress
In reply to: Can't redirect RSS feed to Feedburneryou might wanna try changing this line:
^feed/?.*$
for
^https://yourdomain.com/feed ….
Forum: Fixing WordPress
In reply to: How to update plugin / theme from external hostIm interested on this issue too.
Lets assume I have a premium plugin, how can I interact wiht the wordpres native functions to upgrade a plugin?
Forum: Fixing WordPress
In reply to: Missed schedule problemYou can modify that plugin, so the missed scheduled posts are searched according to your needs, example: once an hour
Forum: Fixing WordPress
In reply to: 'Missed Schedule' problem!!!Esmi has the clues.
I dont think your host block the plugin, its a simple cron job and only runs if a page is loaded by users.
How are you creating the scheduled posts?
Forum: Plugins
In reply to: [Auto Featured Image (Auto Post Thumbnail)] External URLsin case you missed my reply:
Do this script generates all sizes of images or just the thumbnail?
I have external images for disk space issues and I dont want to have them uploaded in my server, since that’s the first thing I tried to avoid.Tnx
Forum: Fixing WordPress
In reply to: wp_insert_postI was having the same problem and found out something just by reading your post, its about the “post_date_gmt” field, you must ensure you are setting that tvalue properly since that’s the value that the codex takes to compare and then publish, so if its wrong or zero, your post will be published directly.
It worked for me.
cheersAditya,
Reading this topic reminds me I have an own script that inserts posts.
If I use the wordpress’s native functions to insert it (wp_insert_post($postdata)) , this plugin should also run with it with hooks or semthing?Forum: Plugins
In reply to: [Auto Featured Image (Auto Post Thumbnail)] External URLsThank you Aditya,
Do this script generates all sizes of images or just the thumbnail?
I use this in functions.php
add_image_size( ‘related-thumbnail’, 100, 120, true );can this image be recognized by your plugin?
Forum: Fixing WordPress
In reply to: Can’t publish since upgrade to 2.9 (says MISSED SCHEDULE)You might wanna try my plugin:
https://www.ads-software.com/extend/plugins/missed-schedule/
Forum: Your WordPress
In reply to: Getting “Missed schedule” since upgrading to 2.8PLugin to solve this bug:
Forum: Fixing WordPress
In reply to: “Schedule Missed” IssuePlugin to solve this issue:
Forum: Fixing WordPress
In reply to: Missed ScheduleForum: Fixing WordPress
In reply to: “Missed Schedule” noticeYou can solve this by installing this plugin: