Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 6 years, 6 months ago Mirela
    Participant
    in reply to: How to have all FAQ questions load open?

    Hello,

    This can no tbe done thru css. You will need to edit the faq file. Please go to vc_templates/faq.php and find this block:

      $output .= '<div class="accordion-group '.esc_attr($sort_classes).'">';
                            $output .= '<div class="accordion-heading '.( ($i == 1)?'in_head':'' ).'">';
                            $id = rand(0, 50000);
                                $output .= '<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion'.esc_attr($nr).'" href="#toggle'.esc_attr($id).'">';
                                    $output .= get_the_title();
                                $output .= '</a>';
                            $output .= '</div>';
                            $output .= '<div id="toggle'.esc_attr($id).'" class="accordion-body in'.( ($i == 1)?'in':'' ).' collapse ">';
                                $output .= '<div class="accordion-inner">';
                                    $output .= get_the_content();
                                $output .= '</div>';
                            $output .= '</div>';
                        $output .= '</div>';
    

    Edit to this:

     $output .= '<div class="accordion-group '.esc_attr($sort_classes).'">';
                            $output .= '<div class="accordion-heading in_head">';
                            $id = rand(0, 50000);
                                $output .= '<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion'.esc_attr($nr).'" href="#toggle'.esc_attr($id).'">';
                                    $output .= get_the_title();
                                $output .= '</a>';
                            $output .= '</div>';
                            $output .= '<div id="toggle'.esc_attr($id).'" class="accordion-body in collapse ">';
                                $output .= '<div class="accordion-inner">';
                                    $output .= get_the_content();
                                $output .= '</div>';
                            $output .= '</div>';
                        $output .= '</div>';

    Save changes.
    Keep in mind that this change will be overwritten from the next theme update you take, so we recommend to save a copy of the edited file.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Installing demo for Construction and Buildings theme

    Hello,

    Did you not import the Construction demo first? Please add some wp credentials in a private reply. So we can help you set it up.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Problem with WPBakery shortcode

    Hello,

    The bug fix will be included in the next theme update. So when you will be notified regarding the update, this will be fixed as well.

    -Are you referring to this: https://ibb.co/nRj4Sqg
    If yes, you can hide it by adding this css:

    #comments {
        display: none;
    }

    Let us know.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Problem with WPBakery shortcode

    Hello,

    There seems to be a js conflict between the “Recent News” element and the “Media Grid”. I can suggest you replace the “Recent News” with another equivalent element for now.
    I will notify the developers regarding this.

    I have made a test page for you: https://hennebont.datanaute.com/test/
    I added this custom css code in the page’s custom css box:

    .blog-article.grid-style .media {
        width: 40%;
        margin-right: 20px;
    }
    .latest_blog.simple .blog-item .gridbox {
        display: inline-flex;
    }

    .. for the CSS that customizes the “Full Blog” element to be similar to Recent News.

    Let us know.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Search bar adjustment in left navigation (header 7)

    You’re welcome :)

    If you like our theme and support, leave us a rating on Themeforest, it’s very important for us :)

    https://themeforest.net/downloads

    Thank You so much!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Problem with WPBakery shortcode

    Hello,

    Please add some wp credentials in a private reply. So we can check this closely.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Problem with WPBakery shortcode

    Hello,

    Are you using the included version of WP Bakery plugin? Or do you have any other version that you purchased individually?

    Please keep the included version as it has customizations done in order to fit theme setting and style.
    Let us know.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Search bar adjustment in left navigation (header 7)

    Hello,

    I added this css into your Custom Css box in General Options:

    .input-append input#s {
        width: 135px !important;
        display: block !important;
    }
    .widget_search .input-append {
        font-size: 13px !important;
    }
    a.close_ {
        display: none;
    }

    Please check your site and let us know if this is ok for you.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Post Link

    That’s great to know!
    Let us know for anything.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Post Link

    Hello,

    I just made a test on my side and the mailto does not break the layout: https://ibb.co/vV2Vy46
    How did you add it? Can you add some wp credentials in a private reply? So I can check this on your side as well.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Search bar adjustment in left navigation (header 7)
    This reply has been marked as private.
    6 years, 6 months ago Mirela
    Participant
    in reply to: Post Link

    Hello,

    There is a “mailto:” link in the new topic content. I think it’s messing up the link of the read more arrow. Can you please remove it for now? Just so we can check.

    Let us know.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Search bar adjustment in left navigation (header 7)

    Hello,

    Can you please add a link of the site? So i can give it a closer look.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Change Slug

    Hello,

    This is not possible to be done from the options. You need to edit theme files. The change is in file includes/core/codeless-routing.php in line(117):
    'taxonomy' => 'portfolio_entries',

    Edit the “portfolio_entries” and save changes. Please keep in mind that this needs to be redone in case of a theme update. So I suggest you save a copy of the edited file.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Change Slug

    Hello,

    Did you reset the permalinks? It is important to reset permalinks for the changes in the url to take place. See my last reply to understand how to do this.

    Let us know.
    Best regards!

Viewing 15 posts - 226 through 240 (of 12,542 total)
← 1 2 3 … 15 16 17 … 835 836 837 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password