Forum Replies Created
-
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!
in reply to: Installing demo for Construction and Buildings themeHello,
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!
in reply to: Problem with WPBakery shortcodeHello,
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!in reply to: Problem with WPBakery shortcodeHello,
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!
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!
in reply to: Problem with WPBakery shortcodeHello,
Please add some wp credentials in a private reply. So we can check this closely.
Best regards!
in reply to: Problem with WPBakery shortcodeHello,
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!
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!
in reply to: Post LinkHello,
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!
in reply to: Search bar adjustment in left navigation (header 7)This reply has been marked as private.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!
in reply to: Change SlugHello,
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!
in reply to: Change SlugHello,
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!