Mihai
Forum Replies Created
-
This is a bug that appeared after updating elementor. With elementor Version 3.3.1 the blocks load just fine.
Is there a way to fix this ?Please share an update when you manage to track down the issue. Facing the same problem.
Later edit: my issue was cache related. after a couple for force refreshes, it loaded ok.
- This reply was modified 4 years, 3 months ago by Mihai.
Forum: Plugins
In reply to: [WooCommerce] onsale shortcode showing regular price productThanks for the tip! I’ve cleared the transients and also used the “regenerate product lookup tables” just to be sure and it seems the issue is solved.
Hey @yukikatayama, just came across this issue and I sort of have the same issue.
Is is possible to list all products by a certain attribute without specifying the term value in the URL?
Right now, accessing site.com/attribute_name/term_value/ returns as expected – products that have the term_value set for the specific attribute_name.
Accessing site.com/attribute_name/ returns 404
Desired outcome would be listing all products that have attribute_name, without having to manually create individual pages for each attribute and placing [products attribute=”attribute_name”]
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Mailchimp signup form widget qtranslateI’m using the free version.
I managed to fix this using a filter on the content for the output of the widget
function tt_mc4wp_consent_text($content){
$message = ‘Message to be replaced’;
$new_message = $message;
if (qtranxf_getLanguage() == ‘en’){
$new_message = ‘Replaced message in english’;
}elseif(qtranxf_getLanguage() == ‘de’){
$new_message = ‘Replaced message in german’;
}
return str_replace($message, $new_message, $content);
}
add_filter( ‘mc4wp_form_content’, ‘tt_mc4wp_consent_text’);Forum: Alpha/Beta/RC
In reply to: Hierarchical Custom Taxonomy Permalinkshi !
I’m getting my custom twentyten theme to work tanks to your suggestions.
Currently I got it working like this :
http://site.org/category/subcategory/in which i see all my custom posts that have been assigned tosubcategory.
What i want to know is if i can make my url point to the custom post and include in the url the cat/subcat it’s in… something likehttp://site.org/category/subcategory/postnamebecause now it sends me tohttp://site.org/custom_post_type/postnameP.S. : I have the permalink set to /%category%/%postname%/
Any ideas ?