Forum Replies Created
-
in reply to: Width of pages are changing when changing the title.
Hello,
I have updated the plugins for you. Please try to continue working and let us know if you will experience the same problem again.
I just tested again and seems everything looks ok.
Let us know.
Regards!
in reply to: Images are not able to update/editOk, i will make the update for you through the ftp details you have provided.
in reply to: Picante theme default homepage problemHello,
I just activated the plugins again and everything seems ok.
Regards!
in reply to: Mobile theme logo is overlapping portfolio imagesHello,
I see that you have used some boxed style for the header this caused this issue.
You have to disable the Boxed style into Customize > Header > Layout.
Or another fix is to add this css code into General > Custom Code:
.header_container.boxed-style {position:relative !important;}Let us know.
Regards!
in reply to: Translate "View All" in Portfolio sectionHello,
Have you tried to translate the website generating po/mo files ? You can also try Loco translator or WPML with Wpml String to translate theme.
Anyway you can also access the view all string directly at : /themes/tower/portfolio.php file :
<ul class=""> <li class="filter active all" data-filter="all"><a href="#" class="filter active" data-filter="all"><?php _e('View All', 'codeless') ?></a></li>Let us know.
Regards!
in reply to: AttributesHello,
We will try to replicate the same situation on our local server to check if this is a problem with the theme or something else.
We will give you a response soon.
Regards!
in reply to: Food Menu Add to cartHello,
Yes there is a way to do that by edit \includes\codeless_builder\shortcodes\cl_menu_tabbed.php file:
<div class="single-menu-container col-sm-6"> <?php // Loop counter $i = 0; codeless_loop_counter($i); // Start loop if ( is_object($the_query) && $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); codeless_loop_counter(++$i); $active = ''; if( $i == 1 ) $active = 'active'; ?> <div class="single-menu <?php echo esc_attr( $active ) ?>" id="cl_single_menu_<?php echo esc_attr( get_the_ID() ) ?>"> <?php $content = get_the_content(); echo apply_filters('the_content', $content ); ?> </div> <?php // End loop endwhile; wp_reset_postdata(); endif; ?> </div><!-- .single-menu-container --> <div class="tabs-container col-sm-4 col-sm-offset-2">and replace the code from line 21 to 65 with:
<div class="single-menu-container col-sm-8"> <?php // Loop counter $i = 0; codeless_loop_counter($i); // Start loop if ( is_object($the_query) && $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); codeless_loop_counter(++$i); $active = ''; if( $i == 1 ) $active = 'active'; ?> <div class="single-menu <?php echo esc_attr( $active ) ?>" id="cl_single_menu_<?php echo esc_attr( get_the_ID() ) ?>"> <?php $content = get_the_content(); echo apply_filters('the_content', $content ); ?> </div> <?php // End loop endwhile; wp_reset_postdata(); endif; ?> </div><!-- .single-menu-container --> <div class="tabs-container col-sm-4">So practically i have changed the col-sm-6 to col-sm-8 and removed the col-sm-offset-2 from line 65.
Save the code and i think everything will be ok.
Regards!
in reply to: Specular PHP 7.2 Website DownHello,
We have to debug the issue. Maybe there is only a small issue that makes that.
Can you show to us any error that you have received ?
I going to try Specular on similar environment and will let you know.
Regards!
in reply to: Disable Text Animation on SlidesHello,
We are so happy that Specular have helped you to create your website. Now to remove the title effect you have to go to WordPress Dashboard > Codeless Slider > Slides.
Edit the slide and in the Codeless Slide Option > Content > Title Animation > None
Click on save.
Let us know.
P.S: If you have time, help us with rating Specular with 5 stars on Themeforest. Thanks!
Best Regards!
in reply to: Images are not able to update/editHello,
I have just checked your theme version : “Your current theme version: 1.1.1”. You have to update the theme and the plugins the latest version: 1.2.1
The update will resolve your issue.
Please checkout this article: https://codeless.co/update-wordpress-themes-and-included-plugins/
Let us know.
Best Regards!
in reply to: Folie Theme : System status yellow alert messages.Hello,
Did you have experience any issue except the system status notification?
Anyway fill your profile details so we can inspect your installation better.
Let us know.
Regards!
in reply to: System Status: What does this mean?Hello,
Please write on your profile details your wp credentials and online link. So i can login and check the issue you have.
Let us know.
Regards!
in reply to: Search displays HTML entity for special charactersHello,
We are sorry for the delay, in the next update that will come shortly we will fix that issue. When the update will be online you will be notified with an email.
Regards!
in reply to: Toggle Element – SolvedHello,
You can change the font size and color by adding these lines into General > Custom Code
.cl_toggles.style-square_plus .cl_toggle .title{ font-size:30px; color:#eee;Now you have to change the size and the color as you want.
Regards!
in reply to: Google Maps not loadingHello,
If you want to make a customization to the original code you have to edit the file includes\codeless_builder\shortcodes\cl_map.php.
Anyway if you want, let us know when you want to add the google map and give to us your api key so we will try to configure it for you.
Let us know.
Regards!