speechfree
Forum Replies Created
-
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Sitemap Noindex IssueHello,
Thanks for quick reply. We did not know that it was intentional, but we are having a problem with SE Ranking saying that XML sitemap is missing. Also, Google Search Console cannot fetch the sitemap even though the sitemap is accessible publicly. So, we thought that X-Robots-Tag: noindex was the issue.
Do you have any idea about this issue? What would you suggest?
Thanks
Forum: Plugins
In reply to: [Live Rates for ShipStation] Rates Not MatchingHello,
Thanks for getting back to us. You mention “The shipping estimates may be slightly off than what ShipStation provides since they are estimates.” Estimates are not good when we charge the customers because even with adjustments we end up either charging more or less. We cannot get the exact shipping cost. I think it was not like this years ago. I am not sure if it is the ShipStation or the plugin.
I also notice that if the customer orders on Friday the shipping price does not include the FedEx service which they have on Saturday shipments. This also creates another problem.
I see the other charges but seems like the other charges costs or the total shipping cost never matches. I don’t think this is right. Let me ask you this. the customer makes an order on Wednesday. The customer was charged on the site $50 for shipping. Next day, I log in to ShipStation dashboard and I see the order there and click on cost calculation for shipping. Will it be the same or different? It should be same. If not, how are people handling either losing money or making customer losing money on shipping?
The boxes and dimensions are set in Shipping Zone Custom Boxes, but in ShipStation, changing the dimensions of the package does not affect the cost of shipping.
Thanks!
Forum: Plugins
In reply to: [Live Rates for ShipStation] Rates Not MatchingDoes your plugin take additional charges into consideration? You can see the details of the cost below.
View post on imgur.com
Forum: Plugins
In reply to: [Meow Gallery] Gallery shows only the first 12 images in a lightboxHello,
I am using the latest version, but seems like the issue is happening on my side. When Infinite Scroll is turned on, the light box does not work for the images that loads with the page scroll. When I disable infinite scroll, it gives an error on the front-end but PHP error logs is empty.
Meow Gallery: There was an error while building the gallery. Check your PHP Logs.
I am using Meow Gallery Block element on a page with Oxygen Builder.
What might be the problem? Thanks!
Sorry. Yes, product variations are in my feed. item_group_id is still in it, but I cannot add mappings for attributes. In the following image, you can see there are attributes with custom fields.
satici is one of them and it works, but agirlik and cam is not working as they are similar to satici. The color is also not working.
Sorry, but I also found the following. It does not let me add the variations but only the parent product.
In one of the images, there is warning that the item is not included in shop, but in the following image, in Shop tab, all the products are included in the shop.
The above image shows that the products have variations.
The above image shows that the product link is correct with attributes.
The above image shows that the product is not included in the shop. However, I can see the products in my Instagram shop. The below image shows the products in the catalog.
I am just not sure where I am doing wrong. Thanks for your help and time.
Forum: Plugins
In reply to: [Click to Chat - HoliThemes] Dokan CompatibilityNot each page. When you go to products, you see a list of products. You select Edit from bulk actions and it shows bunch of fields. If we can have only the phone number field, then it will be easy to update all products for vendors. Because I see that there is a custom field section inside each product edit pages. Hope it makes sense.
Forum: Plugins
In reply to: [Click to Chat - HoliThemes] Dokan CompatibilityThanks for the reply. Could you please at least add phone number field to the quick edit menu? Then, it will be easy to bulk update. 🙂
Forum: Plugins
In reply to: [Kargo Takip] Sipariş Sonrası Kargo BilgisiMerhaba,
Teşekkür ederim bilgilendirme için. Elinize sağlık.
Forum: Plugins
In reply to: [Advanced Google reCAPTCHA] Remove from Checkout PageGreat news! Thanks for updating the post too.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] User Registration Form`add_action(‘acfe/form/submit/my-action’, ‘my_action_submit’, 10, 2);
function my_action_submit($form, $action){// loop repeater
if(have_rows(‘task_list_next_30_days’)):
while(have_rows(‘task_list_next_30_days’)): the_row();// get sub field
$sub_field = get_sub_field(‘task_title_next_30_days’);// insert post
wp_insert_post(array(
‘post_type’ => ‘task’,
‘post_title’ => $sub_field,
‘post_status’ => ‘published’,
// …
));endwhile;
endif;}
This is my code but it does not create posts. 🙁
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] User Registration FormThanks a lot for your help. So, I select custom action in the form and add the action name, right? What is the action name in this case? I added this as action name but it did not do anything. my_form_submit. Or, we need two action? One is this and the second is create a post?