alexgagi
Forum Replies Created
-
Thanks a lot for your help. I’ll update right now.
Thanks for your quick answer, it’s nice to see you are helping your users.
Sorry to insist: I have changed the url to change to the kind of feed from Atom to RSS: https://jazzcafefm.blogspot.com/feeds/posts/default/-/Nuevos%20Albumes%20de%20Jazz%20Internacional?alt=rss.
This is the way to have rss from blogspot according to Google: https://support.google.com/blogger/answer/97933?hl=en.
In this new url you can find the <item>…</item> structure, but still the result is the same. You can see the image of the result here: https://imgur.com/YtDtBO4Thanks a lot for your help.
álex.
Wow, that’s great news. You rock. Installing the new plugin. Thanks a lot. I will put a good score on the plugin.
Forum: Developing with WordPress
In reply to: Create a daily post programaticallyThanks a lot for your answer, @bcworkz.
I have achieved to create a cron job that executes my function using the WP Crontrol plugin, so the part of creating new post every day is solved. This is the function triggered:add_action( 'esfera_custom_cron', 'esfera_daily_summary' ); function esfera_daily_summary() { $content = do_shortcode( '[summary]' ); $date = date("d/m/Y"); $title_post = "Resumen diario - " .$date; $id = wp_insert_post(array( 'post_title'=>$title_post, 'post_type'=>'resumen', 'post_status'=>'publish', 'post_content'=> $content, )); }
The post is published and the title and post_type is ok, but post_content shows nothing, and I don’t know how to transform my shortcode into plain text as you suggest. This is my shortcode code:
function daily_summary() { $args = array( 'date_query' => array( array( 'column' => 'post_date_gmt', 'after' => '60 hours ago', ), ), 'posts_per_page' => -1, ); $the_query = new WP_Query( $args );?> <ul> <?php // Start our WP Query while ($the_query -> have_posts()) : $the_query -> the_post(); // Display the Post Title with Hyperlink ?> <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> <?php // Repeat the process and reset once it hits the limit endwhile; wp_reset_postdata(); ?> </ul> <?php } add_shortcode('summary', 'daily_summary');
Thanks for your help.
Forum: Hacks
In reply to: Problem publishing a post using wp_update_post()Dear @bcworkz, thanks for your response and sorry about the image link.
Now I hope you can see it: Image correct.
About your response, I have not explained well, and without image it is difficult to make me understand.
It’s not a question of time, because even days after the field is still not in there. But the problem is not that the scoring does not save, is that the field (the space) to score doesn’t even appear.
I think the problem is with wp_update_post(), something is missing when I publish the post using this function. It makes me mad…
Thanks a lot.Forum: Reviews
In reply to: [Import and export users and customers] Wonderful pluginHombre, hablando inglés con uno de Córdoba… ?? El plugin está muy bien. He tenido algún problemilla para identificar un par de registros que no había subido, pero hace muy bien su trabajo.
I have the last one (as far as I know): BackWPup version 3.1.2
Hello, Daniel. Thanks a lot for your effort.
Yes, you’re right a bout the complexity of FTP and NAS.
But in this case I have the ftp server working, because when I use FileZilla I can connect via ftp. That’s what makes me wonder what the problem is.
By the way, the problem in the lof of the plugin is this (I have added the XXXXXXX to obfuscate the data):[12-jun-2014 12:03:49] 1. Try to send backup file to an FTP server … [12-jun-2014 12:03:49] Conectado al servidor FTP: ftp.XXXXXXXXXX [12-jun-2014 12:03:49] Comando de cliente FTP: USER XXXXXXXXX [12-jun-2014 12:03:49] Responder servidor FTP: 331 Password required for XXXXXXXXXX. [12-jun-2014 12:03:49] Comando de cliente FTP: PASS ******* [12-jun-2014 12:03:49] Responder servidor FTP: 530 Login incorrect.
So the plugin connects to the ftp server but the password is not recognised. I have chekcked many times it is correct.
Hello again and thanks for answering, Daniel.
Well, that’s strange: I cannot use the NAS as a ftp server to receive this backup, while I can use that ftp server on a ftp client to acces to the NAS with the same credentials.
But, when I try the backup to another ftp server it works.
It has to do with the communication between the plugin and the server, but I can’t determine the cause. It’s a pitty, because I had the backup system ready and now I have to change the ftp.
Bad luck, I guess.Hi, Stevinoz, thanks for the answer, but the “provider” is a NAS I have at home and nothing have changed. In fact, as I say in my message, I can connect with a ftp client to the ftp server with exactly the same user and password.
By the way, tonight has failed again.
Best regards.Forum: Plugins
In reply to: [Better Internal Link Search] Not working since WP 3.9 upgradeThis plugin is wonderful, but I’m sorry it’s broken. It has stopped working as said before.
I have asked the theme author about it. I’ll let you know if I receive response.
But it’s very strange what happens with this.Thank you anyway,
Hi Richard, yes, that is right, a child theme of Oxygen. You can access the child theme zip file here: https://dl.dropboxusercontent.com/u/2496092/oxygen-child.zip.
Please tell me when you have downloaded it.Thanks.
Hi Richard:
if ( ! isset( $content_width ) ) $content_width = 600;
But I have just tried to take that code out of functions.php and the result is the same.
Thanks for your efforts, Richard.
Tried. It seems to work OK with Twenty Twelve. But I want to use it on muy theme. Any idea?
As I told before, I installed the plugin to deactivate the Cleaner Gallery and I have added to the functions.php the content_width snippet.Keep on waiting.