Forum Replies Created
-
in reply to: Issues with WPML
Hello,
Please make sure you have set up wpml properly. You can watch some video tutorials here. If you want, you can send us your wp credentials in a private reply, so we can give it a look.
Best regards!
in reply to: Portfolio Element – FeaturedHello,
Sorry that is not possible. You can only choose from categores. Go to option Set featured Portfolio > Select a specific category > Select the category.
Best regards!
in reply to: Can get the theme as same as it is in the web.Hello,
You have to customize it further. You have to import or create the slider; Add clients in Specular > Clients; Add images to posts.. etc. You can have a look to our documentation to get more information.
Let us know if you need help.Best regards!
Hello,
@orionblu,
Please increase your execution time and memory limit. You can ask your hosting provider to do it for you.Best regards!
in reply to: Unable to locate Specular.zipHello,
Did you upload only the theme folder or the entire folder downloaded from ThemeForest? Please make sure it is only the theme folder. The access rights are ok. Please send us your wordpress and ftp credentials in a private reply, so we can give it a go.
Best regards!
in reply to: Can I remove headerHello,
Please go to General Settings > Page Header Options > Active Page Header set it Off. Screenshot.
Best regards!
in reply to: Header Text and Address Edit?Hello,
Please find the specified elements in Widgets. Add/Edit/Remove any of them there.
Screenshot.Best regards!
in reply to: Envato toolkit and blog questionsHello,
1-The message indicates that you may have already installed it. Please make sure you do not have any related files of the plugin elsewhere.
2-Please add these lines into your custom css box:
.blog-article.grid-style .info li:nth-child(1) { display: none;}3-To disable/not show excerpts at all, add these lines into your custom css box:
.blog-article.grid-style .content .text { display: none; }To limit the word display, go to file:includes\view\blog\loop-grid.php and find these lines:
<div class="text"> <?php if($post_format == 'video' || $post_format == 'audio') echo codeless_text_limit(get_the_content(), 20); else echo get_the_excerpt(); ?> </div>Replace this these:
<div class="text"> <?php if($post_format == 'video' || $post_format == 'audio') echo codeless_text_limit(get_the_content(), 20); else echo codeless_text_limit(get_the_excerpt(), 10); ?> </div>Edit the value of
codeless_text_limit(get_the_excerpt(), 10)to your need.Best regards!
in reply to: Shortcodes IssueHello,
You have a new issue: screenshot. The script defined in red square, is not part of the theme. Please check either you have added it some where or any of the installed third plugins added it.
Best regards!
in reply to: Media Link ProblemHello,
Please add the full link. I should be like this: https://www.google.al/ , Not this: http://www.google.al
Best regards!
in reply to: Portfolio BreadcrumbsHello,
Sorry that is not possible.
Best regards!
in reply to: Portfolio ActionHello,
@marioncha5 ,
We need the ftp credentials as with the wordpress the file is not accessible. You should open the two links above. Copy the code in the first one(https://www.codeshare.io/uiyYn), find it in your loop-grid.php file and replace it with the code in the second link(https://www.codeshare.io/QIboV).Best regards!
in reply to: Team QuestionHello,
Please add these lines into your custom css box:
@media (min-width: 1101px){ .container { height: 104px; } }Best regards!
in reply to: Breadcrumbs without titleHello,
Yes, please add these lines into your custom css box:
.header_page.normal h1 { display: none; }Best regards!
in reply to: Service Icon ClickabilityHello,
Please go to file: vc_templates\services_medium.php and find these lines:
if($icon_bool == 'image' && !empty($image)): $output .= '<img src="'.esc_url(codeless_image_by_id($image, '', 'url')).'" alt="" />'; endif;Replace with this:
if($icon_bool == 'image' && !empty($image)): $output .= '<a href="'.esc_url($data['link']).'"><img src="'.esc_url(codeless_image_by_id($image, '', 'url')).'" alt="" /></a>'; endif;Best regards!