Forum Replies Created
-
Author
-
November 6, 2015 at 16:08 in reply to: using existing plugin for image carousle in new template #85950
Radu
ModeratorYou’re welcome,
Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂
http://themeforest.net/downloads/
Best regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please provide me a screenshot that pointing out the elements that you want to modify.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
CAn you provide please a screenshot that pointing out the issue ?
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve changed the color to “950cc2”
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Strange behaviour, we will investigate this.
Until we find what causes this issue please use this CSS
COPY CODE.kleo_framework.breadcrumb a:hover { color: red !important; }
Add this css to wp-admin -> theme settings -> general settings -> quick CSS
Replace red with your color code.
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 5, 2015 at 19:31 in reply to: using existing plugin for image carousle in new template #85778Radu
ModeratorHi again,
You’re welcome @sashaD
Please update the code from functions.php with this
COPY CODEfunction GetCurrentAttachmentIDs() { if( $GetAttchmentIDS = implode(',', array_keys(get_attached_media( 'image', get_the_ID() ))) ) { return do_shortcode('[vc_images_carousel images="'.$GetAttchmentIDS.'" img_size="400x200" autoplay="yes" min_items="3" max_items="10"]'); } } add_shortcode('attachmentID','GetCurrentAttachmentIDs');
The carousel will be rendered only if the post will have attachments associated.
Best regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve added this CSS snippet to your Theme Options -> General Settings -> Quick CSS
COPY CODE.kleo-main-header:not(.header-scrolled) .navbar-collapse>ul>li>a {color:#000 !important;}
Now, the menu items color are black until you scroll, then the text links color will change to white.
Let me know if is ok.
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
First, please update the theme and the required theme plugins to latest version.
Let me know
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just i’ve tested the code that you have provided and it works, it limit the Post Grid excerpt length.
Make sure that is not a cache related issue by clearing cache and check after.Also make sure that is not plugin conflict by disabling all plugins that not comes once with the kleo theme.
Let me know
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You need to change color for alternate area just see the screenshot.
Let me know if this solve your issue.
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.Radu
ModeratorHI,
Go to wp-admin -> theme options -> blog
or access this link after you replace localhost with your domain http://localhost/wp-admin/admin.php?page=kleo_options&tab=5 and set OFF for Display media on post page* ( see attachment )
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.Radu
ModeratorHi,
Just i’ve added the live notification item to menu,
Make sure that after modification to website you hit the button named “Cancella la cache”.
Regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Make sure that you have a cache plugin, if you have, after each modification is need to clear the cache.
If you cannot load the CSS that i have you provided you please provide admin credentials.
Regarding the color of the transparent menu,please provide a screenshot that pointing out the changes
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorJust see this little video and then you will figure out how to use that code
https://drive.google.com/file/d/0Bxo5b6iHWRMwX3Brb2owYnhQcWM/view
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Login to FTP go in this location wp-content/themes/kleo-child/ and then make sure that there is a folder named buddypress and inside buddypress folder a folder named members and in members folder needs to be the file that i have you provided ( the file needs to be unzipped )
Let me know if you solve the issue.
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Can you please provide admin credentials to take a look ?
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please update the theme and required plugins to latest version.
Let me know if the update will solve this issue.
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just go to wp-admin -> settings -> permalinks -> save changes.
That’s all
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 5, 2015 at 17:46 in reply to: using existing plugin for image carousle in new template #85734Radu
ModeratorHi sashaD,
Please add this snippet to your kleo-child/style.css
COPY CODEfunction GetCurrentAttachmentIDs() { $GetAttchmentIDS = implode(',', array_keys(get_attached_media( 'image', get_the_ID() ))); return do_shortcode('[vc_images_carousel images="'.$GetAttchmentIDS.'" img_size="400x200" autoplay="yes" min_items="3" max_items="10"]'); } add_shortcode('attachmentID','GetCurrentAttachmentIDs');
Then when you add a post add this [attachmentID] shortcode to content to run the carousel with the associated images to that post.
If you want to carousel to be generated automatically for each CPT posts add in your created template :
COPY CODE<?php echo do_shortcode( '[attachmentID]' ); ?>
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please use this layout structure for visual composer, it works and look ok on IE 11 just i’ve tested just use the code from below.
Just add your images as you wish
COPY CODE[vc_row][vc_column width="1/3"][vc_single_image][/vc_column][vc_column width="1/3"][vc_single_image][/vc_column][vc_column width="1/3"][vc_single_image][/vc_column][/vc_row][vc_row text_align="center"][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width="1/3"][vc_single_image][/vc_column][vc_column width="1/3"][vc_single_image][/vc_column][vc_column width="1/3"][vc_single_image][/vc_column][/vc_row]
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The Kleo theme update doesn’t modify the database content or structure, this may can be happens because a plugin conflict or something like that.
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOh sorry,
I’ve forgot a { and }
The correct CSS is :
COPY CODE@media screen and (max-width: 480px){ .kleo-quick-contact-wrapper { display: block !important; } }
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHI,
The css that i have you provided is need to be pasted or in Wp-Admin -> Theme Options -> General Settings -> Quick CSS or via FTP to wp-content/themes/kleo-child/style.css
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
If you will need to discontinue to use the kleo theme to the old site and then to use theme on you new site it’s ok you can do it without any problem.
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi RafVin
Can you please provide the wp=admin dashboard login details ?
I need to take a look.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You will need to set NS-s from the new domain to same hosting server as old domain, then the domain should to point to same directory as old domain after these you will need to change from wp-admin -> settings -> WordPress Address (URL) and Site Address (URL) old site url to new site url.
If you need someone to do this, We offer a migration service see details here : https://archived.seventhqueen.com/services/wordpress-data-migration-service
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The website URL that have you provided is not working can you check please ?
What version of Kleo Theme do you have installed ?
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi @szmek9,
ania-majewska profile has uploaded an un proportionally image that are different of the rest of images profiles.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
For large avatars in activity use this CSS
COPY CODE#buddypress .activity-list .activity-avatar { width: 100px !important; height: 100px !important; } #buddypress .activity-list .activity-avatar a img { width: 90px !important; height: 90px !important; } #buddypress .activity-list .activity-avatar { margin-left:0 !important; } #buddypress .activity-list .activity-content { margin: 0 0 0 115px !important; }
And for the quick contact use this CSS
COPY CODE@media screen and (max-width: 480px) .kleo-quick-contact-wrapper { display: block !important; }
Regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I see the issue,
I will add this issue to improvement list and in next update this will be fixed.
Sorry for inconvenience.
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 4, 2015 at 16:55 in reply to: using existing plugin for image carousle in new template #85613Radu
ModeratorHi,
This is the shortcode for kleo images carouse
COPY CODE[vc_images_carousel images="7880,7882,7030" img_size="400x200" autoplay="yes" min_items="3" max_items="10"]
7880,7882 and 7030 represents attachment id, insert this code and replace these ID’s with your desired images.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can update plugins manually by opening the last theme package that you have downloaded from themeforest
\Main Files\Wordpress\kleo\lib\incHere you will find the plugins that are prepackaged in kleo, get you desired plugin unzip it then uloade and overwrite to wp-content/plugins/
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Yes,
Tomorrow i will provide fix for that.
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 3, 2015 at 19:19 in reply to: Cart in Kleo 3.0.10 with woocommerce 2.4.7 Page Blocked #85526Radu
ModeratorHi,
We haven’t encounter incompatibilities with the SEO by YOAST plugin and KLEO, maybe in your case,this is caused by another plugin that has not comes with the kleo theme in conflict with SEO by Yoast.
Best Regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You’re welcome
Yes in future we will update the documentation.
Regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Do you have solved your issue ?
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please add this file to wp-content/themes/kleo-child/buddypress/members/ after you download and unzip ( see attachment )
Then add this css to your kleo-child/style.css
COPY CODE.extrafieldsmeta b { display: table-caption; }
Let me know if is ok.
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.Radu
ModeratorHi,
Sore you can do it like this
COPY CODEdiv#item-header-avatar { left: -150px !important; } div#item-header-content { left: -150px !important; }
Replace left with your desired position and values as you wish.
REgards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just i’ve shared this post on facebook and it shows ok image, title and content it belongs to this post ( https://ichibichi.com.tw/%E8%8C%83%E7%89%B9%E5%96%9C9%E8%99%9F%E5%BA%97/ )
Make sure that is not a caching issue.
Regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 3, 2015 at 18:16 in reply to: Profile Menu Icons Rendering Too Large in Internet Explorer #85516Radu
ModeratorHi,
Please provide a print screen that pointing out the problem.
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts