1. Is it compatible with Elegant Theme’s Divi Child Theme? (The theme I use for our websites)
2. There is a “Warning” at the top of this plugin’s webpage that says “This plugin has not been tested on the current version of WordPress”. Normally, I’d regard this as a major “red flag”. But because of the number of installations and the favorable reviews, I am tempted to ignore the warning. Am I safe in doing that?
Thanks,
Steve
Recently, I have been straggling with a flickering sticky element on the clients’ website site (remote site – testing stage). This flickering effect is appearing on every type of browser, especially when someone is trying to scrolling it down or up. What is more interesting I am not struggling with it on regular pages only on post pages (styling has been created via theme builder in DIVI)
Spec:
a Child theme based on DIVI
no negative margins etc.
I have checked all regular troubleshooting in a FAQ section of this plugin.
If you have any idea what could cause this problem, let me know.
Do not hesitate to give me a shout on any possible solutions to fix this issue.
Thank you in advance for your time and consideration.
Kind Regards
MindfulGuy
I want to customize my product table adding custom tabs. But I’ve tried to do it in several ways using the plugin and it hasn’t worked. I think The divi child theme is not compatible with the plugin or a special configuration is required. I’ve also tried adding a custom woo function in the functions.php of my divi child theme but that didn’t work. Then I chose another theme to try and if it worked correctly
I’d like to know if anyone knows why this problem happens and what solution I could implement to solve it.
This is the product page I am working on Product page
Thank you..
Original Review
Well…. I was surprised, delighted and delighted again. This little plugin is Clean, Classy, Awesome, Time saving, Does exactly as described. And does it perfectly. Without question this is a top quality plugin and it is simply the best.
Pros:
Cons:
If It used Stripe Gateway as a donation payment method, I would donate. Some people are unable to use the current method for a variety of reasons.
Absolutely None Can’t even find any cons. Nothing, Zero. There are none!
Final note: Thank you, Nice work and well done.
]]>The thing is I’m using divi child theme and implemented structured data on website pages & posts. Now, when I test these pages and posts in Google Structured Data Testing Tool, all showing green, no error no warning. Now when i check my website in Google webmaster tool under structured data section, it is showing error of Data type: hentry with Missing: author and Missing: updated error. I searched a lot everywhere nut never got any solution.
It will be great, if you guys can tell me about it.
Thanks,
Rahul
I have clicked on appearance and customize, all those are set to black…however, when I add a new page, I cannot for the life of me remember what I did when setting up the website with a friend on how to get the background black.
you can visit rastareggaeart.com The two new pages are Custom HeARTwork and Jewelery. Currently it’s white… the other pages *apparel and HeARTwork* are how I want the background to look
Please helP!
]]>it’s still broken! Nothing but white screens. if i hit the back arrow i get my admin back, but the website and WP admin are broken. if i update again…nothing but white screens for WP and website.
i’m using divi and woocommerce. here’s the original code:
<?php
//* Create Portfolio Type custom taxonomy
add_action( 'init', 'divi_type_taxonomy' );
function divi_type_taxonomy() {
register_taxonomy( 'portfolio-type', 'portfolio',
array(
'labels' => array(
'name' => _x( 'Types', 'taxonomy general name', 'divi' ),
'add_new_item' => __( 'Add New Portfolio Type', 'divi' ),
'new_item_name' => __( 'New Portfolio Type', 'divi' ),
),
'exclude_from_search' => true,
'has_archive' => true,
'hierarchical' => true,
'rewrite' => array( 'slug' => 'portfolio-type', 'with_front' => false ),
'show_ui' => true,
'show_tagcloud' => false,
)
);
}
//* Create portfolio custom post type
add_action( 'init', 'divi_portfolio_post_type' );
function divi_portfolio_post_type() {
register_post_type( 'portfolio',
array(
'labels' => array(
'name' => __( 'Portfolio', 'divi' ),
'singular_name' => __( 'Portfolio', 'divi' ),
),
'has_archive' => true,
'hierarchical' => true,
'menu_icon' => 'dashicons-portfolio',
'public' => true,
'rewrite' => array( 'slug' => 'portfolio', 'with_front' => false ),
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'revisions', 'page-attributes' ),
'taxonomies' => array( 'portfolio-type' ),
)
);
}
//* Change the number of portfolio items to be displayed (props Brad Dalton)
add_action( 'pre_get_posts', 'divi_portfolio_items' );
function divi_portfolio_items( $query ) {
if( $query->is_main_query() && !is_admin() && is_post_type_archive( 'portfolio' ) ) {
$query->set( 'posts_per_page', '12' );
}
}
/*
* wc_remove_related_products
*
* Clear the query arguments for related products so none show.
* Add this code to your theme functions.php file.
*/
/*
function wc_remove_related_products( $args ) {
return array();
}
*/
//add_filter('woocommerce_related_products_args','wc_remove_related_products', 10);
function woocommerce_remove_related_products(){
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
}
add_action('woocommerce_after_single_product_summary', 'woocommerce_remove_related_products');
// GET 4 products
function woocommerce_upsell_display( $posts_per_page = 4, $columns = 4, $orderby = 'rand' ) {
woocommerce_get_template( 'single-product/up-sells.php', array(
'posts_per_page' => $posts_per_page,
'orderby' => $orderby,
'columns' => $columns
) );
}
]]>