Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Wouter

    (@estudioio)

    well wel well, discovering and learning every day! The whole problem looks like it was theme related. I couldn’t get it work with the astra theme I originaly had installed, neither with the hello theme but finaly looks like the OCean WP theme is solving my problem, finally showing up the product titles without even any extra css code. Problem Solved. Will close this, Sorry for the fuzz….

    Thread Starter Wouter

    (@estudioio)

    Although I like a lot this plugin, I cannot make it work fine with elementor. Since the store review changes into a horrible visual and user experience when using the elementor template.as you can see on https://com2c.com.br/wp-content/uploads/2021/09/COM2C-SHOP-REVIEWS-IN-ELEMENTOR-BECOMES-HORRIBLE-EXPERIENCE.png So it would be better to dectivate that store review option if you use elementor with wcfm. So after messing around trying to solve the problem elementorwise, I guess I cannot find a solution that works for me. So I’m back where I started this thread.
    I want to make the product title in my store visible, bigger or in another colour because it is not appearing at all. as you can see example on page https://com2c.com.br/shopping/cestas-de-cipo-de-paraty/

    Thread Starter Wouter

    (@estudioio)

    This is getting interesting. I just found out that there’s a way out if I use a store template in the elementor theme builder. So the view of the store page will be different from now on. On this screenshot https://com2c.com.br/wp-content/uploads/2021/09/PRODUCT-TITLE-INVISIBLE-IN-SHOP-PAGE.png you can see what the situation without product title was looking like. COuldn’t get it fixed.Anybody knows the secret key of code? Hope that elementor template will help me out in the meantime

    Thread Starter Wouter

    (@estudioio)

    So I went on searching and found this extra css that could solve the problem maybe:

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #000000;font-size: 1.25em !important;
    }

    But that’s not making appear the product title on the storepages.
    Changing the colour I can see the changes of this extra css take place everywhere on the site but it makes no difference at all on the storepage. If I change the fontsize I can see differences on the storepage but only white letters on a white background, not being able to make the letters black or red so unable to read the product title. Anybody any idea?

    Thread Starter Wouter

    (@estudioio)

    Thanxalot for helping us out with that. great also that it makes part of the plugin. I hadn’t seen that but in the meantime I had found another way that solved my problem also.

    Using the next snippets in the wp snippets plugin or functions.php

    // To change add to cart text on single product page
    add_filter( ‘woocommerce_product_single_add_to_cart_text’, ‘woocommerce_custom_single_add_to_cart_text’ );
    function woocommerce_custom_single_add_to_cart_text() {
    return __( ‘Compre Aqui’, ‘woocommerce’ );
    }
    // To change add to cart text on product archives(Collection) page
    add_filter( ‘woocommerce_product_add_to_cart_text’, ‘woocommerce_custom_product_add_to_cart_text’ );
    function woocommerce_custom_product_add_to_cart_text() {
    return __( ‘Ver detalhes’, ‘woocommerce’ );

    Thread Starter Wouter

    (@estudioio)

    LOOKS LIKE THERE IS MRE THAN THAt GOING ON SO I’ll try to explain better here//

    SITE FOR SCHOOL ACTIVITIES

    ASTRA free THEME | ELEMENTOR PRO | ACF | CPTUI

    in APRIL started the project ( without CPTUI)

    Posting Wp Core Posts with WP Core Categories (Each classroom is a WP category)
    In June I created 6 custom post types with CPT UI. I stopped using Wp core Posts and started publishing only CPT. Had some extra coding for making them appear on the front and in the archive page. And turns out working fine.
    ex http://sosescola.com2c.com.br/category/3-ano/

    But I Did not create custom taxonomies since I only need the WP Core taxonomies (category and Tags) to organize this site. (The whole site depends on the WP Core taxonomies)

    On the front I don’t care at all to know which kind of post type is showing. I only want to show (all = wp posts + 6 CPT posts) posts for a specific category (classroom), that’s why I even added some codelines so the CPT won’t appear in the slug.(because it makes no sense for this site)

    A few unhappy things are happening on the site

    1)The Archives Widget is not counting the NEW (CPT UI POSTS) and only counting the OLD (WP core Posts).
    https://com2c.com.br/3298-2/

    2)and is also showing error404 when opening.

    https://com2c.com.br/3300-2/

    3) on each SINGLE POSTI have an ELEMENTOR PRO POST NAVIGATION WIDGET
    That works the way I want on the OLD (WP core Posts) Where in a post for a specific WP Core Category ( a classroom in my case) only showing posts for that same classroom. (Quite obvious)

    Since I started working with CPT UI , I continued using the same WP core Taxonomy and was waiting for the same result in the single page Posts. BUT Only posts from the same CPT are showing up and like this even showing CPT from other classrooms (aka other categories). Creating a very unwanted effect. How can I code this problem away?

    I’ve been reading and researching for a week until now.
    Anybody out there with an idea ?

Viewing 6 replies - 1 through 6 (of 6 total)