Miguel
Forum Replies Created
-
That looks like a customisation of the plugin rather than option provided out of the box.
Forum: Reviews
In reply to: [Shipit] Horrible servicio, se cae repetidas vecesAun no, no me ha dado el tiempo de investigar, pero me parece increible su deuda tecnica y que no actualicen cosas minimas para que el plugin funcione.
Forum: Reviews
In reply to: [Theme My Login] Works perfect!Also definitely keen on looking for a PRO version like ACF with more features, etc. ??
Forum: Reviews
In reply to: [Theme My Login] BIG RISK to block your siteThis might be because you’ve enabled a login redirection. Be careful on how you set up your websites and make sure you read the documentation ??
Forum: Plugins
In reply to: [Contact Form 7] Conflict with WooCommerce pluginI had the same problem and Takayuki Miyoshi’s
comment solved my issue. Thanks!Forum: Reviews
In reply to: [Contact Form 7] Easy to use, but not much you can doDon’t blame this wonderful plugin if your front-end or html and css skills are not good enough. There is plenty of information and websites about how to code front-end.
You can get the best of this plugin by creating your form first with plain html, css and all the javascript you need-want. Then integrate it with CF7. The change is minimum and it should very straight forward.
??
Cheers!
Oh cheers for let us know!
Thanks
Forum: Plugins
In reply to: [Magic Fields 2] Thumbnail not working when Editor has been hiddenYep, at the moment I am using the custom field
image media
while this still happens and then I have no problems.Forum: Plugins
In reply to: [WP FullCalendar] Console error when no theme selectedI’m using Chrome 33 and WP FullCalendar v0.8.4. If I select under jQuery UI Themeroller the option No Theme I get the following error on my console:
GET https://mysite.loc/No%20Theme 404 (Not Found)
Forum: Plugins
In reply to: [Magic Fields 2] Revision not workingSometimes doesn’t show up because you have saved your entry just once. as soon as you save in another instance you will see the revisions.
Check that out.
Cheers.
Forum: Plugins
In reply to: [Magic Fields 2] Filter by dropdown custom field on WP_QUERY ?As “
city
” seems like a taxonomy field rather a “custom field
” so I changed my query into this:// Showing people $args = array( 'post_type' => 'people', 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'city', 'field' => 'slug', 'terms' => array( 'nelson','otago-southland'), 'include_children' => false, 'operator' => 'IN' ) ), );
So now I can filter my post with no probs.
Hope this helps to someone.
Forum: Reviews
In reply to: [Add Meta Tags] Great plugin, pretty usefulCool man, this works perfect!
Hope this will be useful for someone else ??
Cheers
Forum: Reviews
In reply to: [Add Meta Tags] Great plugin, pretty usefulWow! Cool good to know. I didn’t know about
amt_metabox_post_types
On
functions.php
I’ve added this:
remove_action( 'add_meta_boxes', 'amt_add_metadata_box' );
and then:
add_action( 'add_meta_boxes', 'amt_add_metadata_box_custom_posts' );
function amt_add_metadata_box_custom_posts() { $supported_types = amt_get_supported_post_types(); // Add an Add-Meta-Tags meta box to all supported types foreach ($supported_types as $supported_type): // If post, page or new, then show the meta tags box. if ( $supported_type == 'post' || $supported_type == 'page' || $supported_type == 'new' ): add_meta_box( 'amt-metadata-box', __( 'Metadata', 'add-meta-tags' ), 'amt_inner_metadata_box', $supported_type, 'advanced', 'high' ); endif; endforeach; }
Hope this example could help someone ??
Anyway I am gonna have a look on
amt_metabox_post_types
Thanks again George.
Miguel
Forum: Reviews
In reply to: [Add Meta Tags] Great plugin, pretty usefulYeah!
I added on
amt_add_metadata_box
a filter for$supported_type
and is working pretty good. Thanks again.Cheers man!
Same here, I fixed replacing:
$type = $wpdb->escape( $type );
into
$type = esc_sql( $type );
Source:
https://www.webniraj.com/2013/08/05/wordpress-3-6-fixing-wpdbescape-deprecation-errors/
But as you said, not sure if is super safe.