Sherry22
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity PDF] FunctionalityPerfect! thanks so much.
Forum: Plugins
In reply to: [Gravity PDF] FunctionalityHi Jake, thanks for this. I tested it out with the following and I’m not getting what is inputted in (as the pdf form name that comes through via email).
{Name (Last):2.6} {Name (First):2.3} PDF
I have a field set to first name and a field set to last name. What am I doing wrong?
I also don’t understand what the numbers mean.
Perfect – fixed the issue!
Last question, does your plugin translate SEO keywords entered into the backend? Specifically using Yoast SEO?
Hello, I think it’s just a css issue for the menu. It seems to be translating fine now.
Please take a look at the menu here – American Muscle Cars International | (sg-host.com)
I’m also wondering if your plugin will translate Yoast SEO.
Thx
I have two issues: I added this code to my primary fixed menu <div id=”weglot_here”></div> but the drop down doesn’t expand. I wonder if it’s because it’s a fixed menu or a z-index issue?
Second thing, I installed the plugin and it translated my text. I then typed BYE on the English site and clicked on my /fr expecting it to translate and the word BYE is still in English. How do I get the content to translate automatically?
Hi Edson, Thanks so much for getting back to me.
So if I understand correctly, I can have one WordPress site and if I set the default language to English for defaultdomain.com the site will load in English but if I type in this path defaultdomain.com/fr, it will automatically load everything in French? So, if someone accesses the site through the /fr the pages they navigate through will display in French.
Do you have a free and paid version?
I’m assuming that as I add content, the content translation will happen automatically?
Thx
Forum: Plugins
In reply to: [Gravity PDF] FunctionalityHello, the forms is sending via email now.
Will every pdf form submission be called the same form name or can you number them?
- This reply was modified 5 months, 3 weeks ago by Sherry22.
Forum: Plugins
In reply to: [Gravity PDF] FunctionalityHello, I’m not sure what I’m missing but I’m not getting emails with pdfs – emails at all.
I have notifications turned on to my email. I added this shortcode to the body of the form [gravitypdf]. Even without doing that I’m not getting an email. I have a form named with a template assigned.
What am I missing?
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] French isn’t workingForum: Plugins
In reply to: [WooCommerce] Cash on Delivery Showing as CompletedHello, I figured out the issue was because a vendor was selected. When I removed the vendor from a product, the order goes to processing. Does this make sense to you because of cash on delivery (payment not setup yet)?
Forum: Plugins
In reply to: [WooCommerce] Product Alt AttributeI decided to use css based on categories instead of alt tag. You can close my this post.
Forum: Plugins
In reply to: [WooCommerce] content: attr(data-thumb-alt);Thank you for getting back to me. I found a solution. You can close this post.
Forum: Plugins
In reply to: [WooCommerce] Display all product alt tagsYou can add product image labels through css:
li.product_tag-category-name .et_shop_image:after {
content: ‘category name’;
position: absolute;
bottom: 2em;
left: 0;
padding: 5px 5px;
background-color: #666;
color: #000;}.product_tag-category-name .woocommerce-product-gallery__image:after {
content: ‘category name’;
position: absolute;
bottom: 2em;
left: 0;
padding: 5px 5px;
background-color: #666;
color: #000;}Forum: Plugins
In reply to: [WooCommerce] Display all product alt tagsI figured out a way. You can close my post. Thanks
Forum: Plugins
In reply to: [WooCommerce] Display all product alt tagsHello,
This css is working on the product page – https://mymatchmentor.com/product/becku-lanlonger/
.woocommerce-product-gallery .woocommerce-product-gallery__image {
position: relative;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image:after {
content: attr(data-thumb-alt);
position: absolute;
bottom: 2em;
left:0;
padding: 5px 10px;
background-color: #000;
color: #fff;
}but NOT on the shop page
I was trying to copy the code below but I can’t get the content attribute to show – https://mymatchmentor.com/startups/ (click on Accountants toggle)
.et_shop_image:after {
content: attr(data-thumb-alt);
position: absolute;
bottom: 2em;
left:0;
padding: 5px 10px;
background-color: #000;
color: #fff;
}- This reply was modified 1 year, 3 months ago by Sherry22.