yopraag
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Polylang Module] not compatible with cf7 v5Hey @aurovrata
Thanks a lot for your patience and commitment to this issue.
CF7 smartgrid seems interesting, I’ll give it a go.
Regarding your questions:
Are you by any chance viewing your WP dashboard in hebrew, or in another language other than english?
The dashboards language is in english. I tried changing the selected language in the polylang menu on the admin but that didn’t make a difference.
If so, would you mind changing to english and see if you have the same problem?
See above, the issue occurrs when the admins language is set to english.
Forum: Plugins
In reply to: [Contact Form 7 Polylang Module] not compatible with cf7 v5Hey
Thanks for the very quick reply.
I was actually talking about the back end.
Not sure why but I installed the plugin and two things happened:1. On the admin of CF7 the form dissapeared. The only hint I had was that at the top of the table it showed “Published (1)”
2. On the polylang settings page the option for translating custom post types for “Contact Form” was already checked. It was also disabled and I could not toggle it.
Is this happening only on the server and not your localhost?
Yes, it’s on my server, but I haven’t check to see if this works or not on my local dev.
Could you check that you are running php 5.6 and greater on your server?
Im running php 5.6
Any chance you can get a debug log file from your server to see if there is any issue.
Possibly, although I don’t have the time to right now.
Regarding the shortcode, I am using the classic id base but my base language is Hebrew and not English so the key based shortcode might not be a good idea.
Thanks!
Forum: Plugins
In reply to: [Simple Page Ordering] How to deactivate just for 'page' post_typeThis should go into the FAQ or installation instructions.
Very helpful! Thanks!
Forum: Plugins
In reply to: [WP Original Media Path] Plugin does not deactivateOK, you meant empty the fields. As in remove the text in the input fields.
Thanks!
Forum: Plugins
In reply to: [WP Original Media Path] Plugin does not deactivate@rvola What fields in the media.php are we talking about?
Can you paste the code here?Not sure about the cart widget but you can listen for the javascript event:
added_to_cart
or you could hook on to the filter
add_to_cart_redirect.So if you wanted to do something after you added something to the cart you can do:
jQuery(document).on('added_to_cart', function(){ //... do something });
Forum: Plugins
In reply to: [Secure Custom Fields] Getting the list of validation options and labelsHad a similar problem.
Glad I could help.
Forum: Plugins
In reply to: [Secure Custom Fields] Getting the list of validation options and labelsYou can view this field key in the admin area by going into Custom Fields > your field group > Screen Options (top right) > and set “Show Field Key” to Yes
See the pic for clarification
https://tinypic.com/r/rk7bsh/6This will show you the field key next to your custom fields.
BTW,
You can also see these keys in your MySQL db if you search for the field name in the postmeta table.Hi,
Maybe you should try and send in smaller snippets of code.
Or give an online example.Basically if you add a
the_field('bottom_quote')
function on your page it should echo out the current pages’ “bottom_quote” field.If you’re not in a WP loop you have to explicitly point to the post you want to get the field from of using an ID:
<?php the_field( 'bottom_quote', $post->ID );
Also note that
$post
should either be global or in aforeach
loop.Forum: Plugins
In reply to: [Secure Custom Fields] [Plugin: Advanced Custom Fields] Repeating Field issueThis was added to the to-do list:
https://advancedcustomfields.com/to-do/Forum: Plugins
In reply to: [Secure Custom Fields] Getting the list of validation options and labelsHi
Check out this answer I gave on the support section of acf.
https://support.advancedcustomfields.com/discussion/comment/9283#Comment_9283You should be able to get what you want using get_field_object.
Forum: Plugins
In reply to: [Plugin: Woocommerce] Filtering products by product tag problems@mikejolley
Could you post the code for getting a product by tags?I want to do the opposite and this was the only place that came close to answering my question (only backwards).
Here’s what I’m trying to do:
<?php $tags = wp_get_post_tags( $post->ID ); if ( $tags ): foreach ( $tags as $tag ): ?> <a href="<?php echo get_tag_link( $tag->term_id ); ?>"> <?php echo $tag->name; ?> </a> <?php endforeach; endif; ?>