iapassas
Forum Replies Created
-
Accept my apologises.
Indeed it was a mistake 🙁
Thanks for corresponding
IsidorosForum: Plugins
In reply to: [New User Approve] Not sending emailsI am facing the same issue. Has anybody addressed it? SMTP works properly.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack version 4.3 failsThank you first off all for your prompt reactions. As proposed I’ve contacted you via the contact form.
Forum: Plugins
In reply to: [List category posts] Shortcode for Custom Taxonomy?This is actually an update because I do need this functionality, I went through the code and it looks to me at least a bit more complicated than I thought initially.
Let us hope that the core developers of this plugin will manage to resolve the issue. It is peculiar though that has 100000+ downloads and nobody identified it…Forum: Plugins
In reply to: [List category posts] Shortcode for Custom Taxonomy?Thank you for posting the above question. You saved me a lot of time and we will be waiting for a reply.
I do not consider myself neither a PHP expert and definitelly as I noted in my previous post is a temporary solution. Just follow the above instructions you can open wp-db.php with a simple text editor as notepad or notepad++. Goto line 590 and modify 5.5 to 5.6 save the file and see if it works.
Facing a different issue after updating to WP 3.9 I think is that PHP on our server is version 5.5 and on wp-db.php line 590
elseif ( version_compare( phpversion(), '5.5', '>=' ) || ! function_exists( 'mysql_connect' ) ) {
forces the connection to use_mysqliI know it is not correct but for the time being I modified the code
on wp-db.php line 590elseif ( version_compare( phpversion(), '5.6', '>=' ) || ! function_exists( 'mysql_connect' ) ) {My encoding issue temporarily appears that has been resolved, I hope might help you
Waiting for a major update of DB Contact Form to use mysqli or PDO instead to connect to the DBForum: Plugins
In reply to: [Contact Form 7 Map Field] Map broken in CF7 v 3.6Applying an all night trying and error procedure and without being neither expert on PHP nor the customization of plugins what I have eventually found out and it appears that is working for the time being is the following.
On Plugin source file: contact-form-7-map-field.php
line 34: modify thisadd_action(‘plugins_loaded’, ‘contact_form_7_map_field’);
to
add_action(‘wpcf7_init’, ‘contact_form_7_map_field’);
Is working for my case.
Just a quick answer for the more than 4000 downloadsForum: Plugins
In reply to: [Contact Form 7 Map Field] Map broken in CF7 v 3.6Your answer is quite clear. Just if anybody can check it we will most appreciate it!
Forum: Hacks
In reply to: Show custom post types in dashboard activity widgetOK your code is working perfectly and what I did is that I changed the
$args[‘post_type’] = array (‘type_1′,’type_2′,’type_3′,’type_4′,’type_5’)
and all the following ‘post_type’ => array( as above )
so different post types are presented.
thanks for sharing!Forum: Hacks
In reply to: Show custom post types in dashboard activity widgetHappy new year to you. Before trying it my self… I saw in the latest version of WP there is a div with id “column3-sortables” do you think you can add a custom dashboard widget there with your code?