JMedia
Forum Replies Created
-
I think it is resolved now. It may have been oversight by me. Although I had the custom XML in the admin and in Child Theme I never removed the config XML file from the parent Theme folder.
Thanks for your help.
Thanks for the reply.
I’ve tried this also. I also checked the product page and selected “translate” for _gravity_form_data. The Woocommerce Translation section also allows me to enter a different form value for the Translation but when I save it reverts back to the original product that it was copied from.
It’s strange as it only rejects this field when Woocommerce Multilingual is active.
Forum: Plugins
In reply to: [Embed Videos For Product Image Gallery Using WooCommerce] WooCommerce 3Also getting this error.
Media Library unable to retrieve images when trying to add an image to the product gallery. Unable to add a new image to the gallery.
I also have the same problem.
I’ve tried multiple code variations but it doesn’t seem to recognize the custom_field.
Tried adding it to the Template file, tempalte functions file and also the function.php file. I can echo text but the following code does not render any content :<?php $wpo_wcpdf->;custom_field(‘myfield14’); ?>
.Please advise.
____
I have resolved my issue. My error was due to me using the Abbreviation text as the name of the field in my code. I need to use _billing_myfield14 as my custom field name.
- This reply was modified 7 years, 6 months ago by stephencottontail.
- This reply was modified 7 years, 6 months ago by JMedia. Reason: update - resolved
Forum: Plugins
In reply to: [WC Fields Factory] Fatal error with version 1.3.6I’m also getting an error :
Parse error: syntax error, unexpected T_FUNCTION in…. wcff.php on line 147Wordpress 4.7.2
Previous support threads reporting the issue and not fixed:
https://www.ads-software.com/support/topic/apache-24-25?replies=6
https://www.ads-software.com/support/topic/apache-24-incompatibility?replies=7
My clients servers use Apache 2.4 and I try to use All in One Security for all of them.
Forum: Plugins
In reply to: [Taxonomy Images] Image with name in List FormI resolved my issues once I finally tried a few things..:
This will list the taxonony images relevant to a post with the taxonomy name as a shortcode :
add_shortcode('taximageslist', 'taximageslist'); function taximageslist() { global $post; $terms = apply_filters( 'taxonomy-images-get-the-terms', '', array( 'taxonomy' => 'change-to-your-taxonomy-name', 'image_size' => 'detail', ) ); $out .= '<div id="taxonomy-images-the-terms"><ul class="taxonomy-images-the-terms">'; foreach( (array) $terms as $term) { $out .= ' <li>' . wp_get_attachment_image( $term->image_id, 'detail'). '<span class="termname">' . $term->name . '</span></li> '; } $out .=' <ul></div>'; return $out; }
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Add short code to your WordPress post/page:
[taximageslist]CSS I used to display equal width columns with vertical center text to image: (add to theme custom.csss)
#taxonomy-images-the-terms ul li {
list-style-image:none;
list-style-type:none;
display:table-column;
width:110px;
line-height:15px;
height:30px;
margin:0 0 10px 0;
}.termname {
padding-left: 5px;
text-align: left;
height:30px;
margin-left:35px;
display:table-cell;
vertical-align:middle;
}Hope this helps someone else…
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] "Failed to send your message."I removed the askimet tag from the name and email address and the contact form started working for me again.
For reference:
* See the TAG section and select name or email. You will see a checkbox for Askimet. This prevented the form from sending in my case.