Forum Replies Created
-
in reply to: Unable to change main menu
Hello,
Can you please send us your credentials in a private reply? So we can give this a closer look.
Best regards!
in reply to: WPBakery Visual Composer UpdateHello,
Did you updated the theme? The vs 4.5.2 of Visual Composer is included in the latest update. Delete the current Visual Composer folder and go back to the dashboard to install it again.
Best regards!
in reply to: Codeless slider – image linkingHello,
Sorry but that is not possible.
Best regards!
Hello,
1-To completely remove comments, i added this line into your custom css box:
#comments { display: none;}And to remove the ‘Leave a comment’ box at the end of each article, i added this code:#respond { display: none;}2-I see the socials are displaying properly (screenshot) Did you fix the issue?
3-Please got to file \includes\view\blog\loop-index.php and add this code, between these lines:
<article id="post-<?php echo the_ID(); ?>" <?php echo post_class('row-fluid blog-article standard-style normal'); ?>> <?php if($post_format == 'standart'){ $icon_class="pencil"; }elseif($post_format == 'audio'){ $icon_class="music"; }elseif($post_format == 'soundcloud'){ $icon_class="music"; }elseif($post_format == 'video'){ $icon_class="play"; }elseif($post_format == 'quote'){ $icon_class="quote-left"; }elseif($post_format == 'gallery'){ $icon_class="image"; }elseif($post_format == 'image'){ $icon_class="images"; } ?>code
<div class="media">4-Go to file vc_templates\latest_blog.php and find this line:
$output .= '<img src="'.esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2', 'url')).'" alt="">';replace with this:
$output .= '<a href="'.esc_attr(get_permalink()).'"><img src="'.esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2', 'url')).'" alt=""></a>';Save file.5- Add these lines into your custom css box:
.top_nav { top: 126px;} header#header .container { top: -14px;}6-I inserted each of the elements (title and the latest from blog) in a row and now it shows.
Best regards!
in reply to: How to prevent staff featured image to be resizedHello,
You have to edit the image sizes from your functions.php file.
Please go to this file and find this function:function codeless_images_sizes(){Here are set all featured images sizes. When you upload an image, based on where it will be used, the image will be automatically cropped.
The line you need to edit, for the staff featured image, is this one:add_image_size( 'staff', 400, 270, true );Change the sizes to your need. Save file and re-upload the images.
Or run a thumbnail recreation plugin.Best regards!
in reply to: Remove default PostsHello,
For the ‘Recent Posts’,’Categories’ and ‘Meta’ , they are all widgets set in that sidebar. Please go to your Appearance > Widgets, find the sidebar and remove them. Leave only the ‘Search’ widget.
For the ‘Like’ sign (the heart), please go to Specular > Blog Config and set off the ‘Active Post Like’, ‘Show author at blog post’ and ‘Show date at blog post’. Also add this code into your custom css box, for the Comment part:
#comments { display: none; }Best regards!
in reply to: Header title problemHello,
It is possible that the new changes in file style.css may have overwritten the custom made ones. Please add these lines into your custom css box for the page header of portfolio:
.single-portfolio .header_page, .header_page { height: 150px;} .breadcrumbss { display: block;} .header_page h1 { line-height: 136px;} .header_page .page_parents { margin-top: 32px;}Best regards!
in reply to: Mobile menu breakpointHello,
Please add this code into your custom css box:
@media (max-width: 1024px){ #logo img { margin-left: -46px;} .row-fluid .span12 { width: 895px;} }Let us know.
Best regards!
in reply to: Menu problem on smartphoneHello,
Please edit the code to this:
@media (max-width: 767px){ .menu-small ul.menu > li > a { color: #080808 !important;} .menu-small ul.menu > li > ul > li > a { padding-left: 17% !important;} .menu-small ul li a { color: #525151 !important;} }Let me know.
Best regards!
in reply to: stop header transition when loadingHello,
Please in the code presented above, edit the value
800to0. Save file and refresh.Best regards!
in reply to: Can not buy product (Bug?)Hello,
Sorry but this forum does not offer that support. We tested this situation on our side and it does not happen. Please make sure all products settings are set properly. And that you have checked the “Virtual” product checkbox.
Do you have any other e-commerce related plugin installed? Deactivate all third party plugins and try again.
Let us know.Best regards!
in reply to: Product Attributes in Theme Shop (WooCommerce)Hello,
Not that, i said to add it into your custom css box. It is located under Specular > General Options > Custom css Code (screenshot).
Best regards!
in reply to: team member descriptionsHello,
This is strange. Are sure you are adding the text at the excerpt, not the content? Can you please send us your wp credentials in a private reply? So we can check it.
Best regards!
Hello,
You must have copied them wrong. Even a comma left behind causes the code to fail. Please send us your wp credentails in a private reply so we can check these up for you.
PS: In later replies please see this article on how to prevent the html tags from messing up the text.
Best regards!
in reply to: Codeless Slider Loading background color change