martinlyder
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast Duplicate Post] Dont duplicate childrenRightnow im using this hack, but a bit of a workaround cloning a lot of data just to delete it again:
$args = array( 'post_parent' => $new_post_id, 'post_type' => 'templates', 'post_status' => 'pending' ); $posts = get_posts( $args ); if (is_array($posts) && count($posts) > 0) { // Delete all the Children of the Parent Page foreach($posts as $post){ wp_delete_post($post->ID, true); } }
Forum: Plugins
In reply to: [World Cup Predictor] Matches not showingI think it’s Qatar local time. You can tick the check mark: “Convert kickoff times to local timezone. If unchecked kickoff times are displayed as match local time” in the plugin settings. Then it’ll correct to the WordPress timezone…
Forum: Plugins
In reply to: [World Cup Predictor] Matches not showingI have placed a comment about flags in the gist. Link above.
- This reply was modified 2 years, 2 months ago by martinlyder.
Forum: Plugins
In reply to: [World Cup Predictor] New Teams/Matches for World Cup Qatar 2022For anyone else ending here:
Thansk to @andyjones123 data.
I’ve made this gist, so with a litle messing around in the plugin folder the plugin can import the content from the dashboard ?? https://gist.github.com/martinfday/836e7ff99c1f05bde40cfa67714b483dForum: Plugins
In reply to: [World Cup Predictor] Matches not showingI’ve made this gist, so with a litle messing around in the plugin folder the plugin can import the content from the dashboard ?? https://gist.github.com/martinfday/836e7ff99c1f05bde40cfa67714b483d
Forum: Plugins
In reply to: [World Cup Predictor] Matches not showingThanks! ?? And cool you found the problem.
Forum: Plugins
In reply to: [World Cup Predictor] Matches not showingHi is it possible that you share the data, i’ll try to import and debug the plugin ??
Forum: Plugins
In reply to: [World Cup Predictor] Copa do Mundo 2022Listning…
Unfortunately i think the author has left the project.