Forum Replies Created
-
Author
-
sharmstr
ModeratorAh. Okay.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 19, 2015 at 03:50 in reply to: Adding 'group search' possible for the Kleo ajax search #42585sharmstr
ModeratorGroup search has been added. It will search the group name and/or description.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIts been accepted so it will be included in the next release.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNo problem. Let me know when your site is close. You’ve obviously spent more time with woo than I have and I want to see what you’re doing.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou dont change it on that die line. That is in the registration function. You need to do it around line 93
Change this to wherever you want to go
COPY CODEwindow.location.reload();
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorStep #2 is wrong. bp-custom.php needs to reside in the root of the plugins folder. https://codex.buddypress.org/themes/bp-custom-php/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorFirst thing pops to mind is where did you make these changes and do you have the child theme enabled?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAnother heads up. This is still an issue, but I reported it while he was talking a year off: https://wordpress.org/support/topic/multiple-instances-of-ajax-call-triggered?replies=12
Anyhow, think of how many processes this thing will spawn. Crazy. I just tested my fix and it works. I suggest you do the same.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorKleo makes several modifications to core vc shortcodes. Its not as simple as just making 4.4 available. With that said, the Kleo team does a really good job of keeping up with VC. No need to ask for it 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorOkay, change the following in /buddypress-like/includes/scripts.php
COPY CODEadd_action( 'get_header' , 'bp_like_insert_head' );
to
COPY CODEadd_action( 'get_footer' , 'bp_like_insert_head' );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI just noticed it breaks the sticky menu. No fix yet.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe portfolio gallery is just the portfolio shortcode. Just add it to a section in your home page. If you only want two rows then set “items to show” to double the ammount you have set in “Number of items to show”. If you want them to stretch the full width, then make sure you turn off ‘inner container’ on the row.
For the image carousel, you need to change the width of the images. If you have them set to the default 400px wide, then you’d have to have a monitor that was 4000px wide to see all 10 images. Make sense? The height of the carousel is dependent on the image sizes. So if you want to build a carousel where all the images are portrait, then you can change the default 400px to 200×400 or something along those lines. Here’s an example of 10 images with the sizes set to 100×200 http://dev.sharmstr.com/portfolio/portfolio-carousel-images/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorfalse alarm. It wasnt rtMedia, it was another pluging causing the issue. To figure out where the issue is on your site, disable your extra plugins. Verify the sticky menu works with just the supported kleo plugins. If it does, reenable your extra plugins one by one to figure out where the conflict is.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorLooks like the latest version of rtMedia breaks the sticky menu. I have a site running rtMedia 3.7.27 which works fine. The site I upgraded to 3.7.30 doesnt work. Looks like you are running 3.7.30 as well. Let me look into this.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI haven’t tried this, but check this out: http://stackoverflow.com/questions/6524301/detect-mobile-browser
Once you’ve detected that it is a mobile device, then you need to check if you are on the home page http://codex.wordpress.org/Function_Reference/is_home. If so, then redirect http://codex.wordpress.org/Function_Reference/wp_redirect
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorBecause the sticky menu runs via jQuery. Your page is throwing jQuery errors which stops all processing of other scripts. Fix your errors then it will work.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorKleo uses the standard 12 column grid system. To split a container into 4 columns, use the col-sm-3 css class.
COPY CODE<div class="container"> <div class="col-sm-3"> </div> <div class="col-sm-3"> </div> <div class="col-sm-3"> </div> <div class="col-sm-3"> </div> </div>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator@STIX – 🙂 *high five*
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou have transparent main menu turned on, but you haven’t turned off the title, breadcrumb and info sections. (none of that has to do with “sticky”.)
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThere’s too many files affected. Be patient.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorOkay. I’ve added the group search to both the menu search and the search form shortcode. I’ve submitted the code to the kleo team for approval. No ETA on if or when it will be added.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorI’ve read this question several times and for the life of me I cant understand what you’re trying to accomplish. I even slept on it thinking it would make more sense to me over morning coffee. Please help me understand. I’m sorry for not getting it :/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNo. The search input is inside the container. No way to show it without also showing the container. You’ll have to custom code it yourself.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHi Linde. Kleo has been using VC 4 for awhile now. Please update your version of VC by downloading the full kleo zip file from theme forest. VC 4.3.5 is in the plugins folder. Note: You will also need to update Kleo to 2.3.1 and K-elements to 2.3.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHello. Only the main menu is sticky when you enable “sticky top menu”. You may be confused by “Top Bar” which is the smaller menu above the main menu (if enabled).
This may help: https://archived.seventhqueen.com/forums/topic/sticky-menu-on-top-bar
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThose group ‘pages’ were added by some plugin or something. They are not standard and I can assure you, that the ajax search was not coded to search groups by default. Here is the code
COPY CODEif ( function_exists( 'bp_is_active' ) ) { $kleo_post_types['Members'] = 'members'; } $kleo_post_types['Posts'] = 'post'; $kleo_post_types['Pages'] = 'page'; $args = array( 'public' => true, '_builtin' => false ); $types_return = 'objects'; // names or objects, note names is the default $post_types = get_post_types( $args, $types_return ); $except_post_types = array('kleo_clients', 'kleo-testimonials', 'topic', 'reply');
You can see at the beginning, that kleo is only searching members, not groups.
On my site, I have installed the idea stream plugin. The “idea” cpt shows up in the search list, but is not in the results if I leave the “search context” field blank even though it says “Leave unchecked to search in all content”. I need to actually select it in order for it to show up in results. See attached. I’ll talk to @abe about this.
As far a moving the search over to the logo, you’ll need to edit the backend code. The logo and the menu are in separate div’s.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
Moderator1 – Groups are not searched. See attached. If you’d like groups to be searched, please add it to the Feature Requests topic.
2 – Try this css. It should get you close. If it doesnt work completely, you’ll need to figure it out
COPY CODE.searchHidden { display: block !important; }
3 – Try this
COPY CODE#nav-menu-item-search { float: left; }
4 – This is not available in Kleo. You will have to build a page to combine all search results yourself.
Also, in another topic you asked about a shortcode. There is a VC shortcode for a search bar. See attached.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorIts been worked on as week speak and will be available in the next release.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHows the signups going? Were you able to sort this out?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator@fally81 What exactly is going on?
A known working configuration is as follows
WP 4.1
VC 4.3.5
Kleo 2.3.1
K-Elements 2.3If you have those version installed and you’re still having issues, disable all other plugins and see if the issue persists. I can’t stress this enough. Plugin compatibility, or lack of compatibility, is the number one cause of most issues.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorBy any chance to you have duplicate pages set up in woocommerce > settings > checkout > checkout pages?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPlease be more specific. The search in the menu or the search form shortcode located in VC?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI dont know that you can. You can make a template out of all the VC code, but I dont know of a way (if its possible) to do that with the page options. When you set up the meta boxes (options) you define the default setting for each. Kleo does allow from some global overrides in Theme Options. Some of the options are pretty recent and havent made their way back to the Theme Options page yet. But again, that’s global. So lets say that you want transparent main menu on pages but not on posts. At this point, there’s no way to do that via WP Admin, short of turning it off globally, then making sure you enable it on every page you publish.
If you are php savy, you can certainly edit the kleo template files to achieve what you want.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI think the Kleo folks have something in the works. I’m personally planning on it for sure, but I’ve been a bit busy trying to get changes into the next version of kleo. I think most of what I’ll be doing is offering plugin integration services.
But, its not uncommon for me to connect to customers sites. I do it every day. Sometimes its just easier to figure out whats going on. To allow us to do that, you just need to provide credentials and a link to your site. Besure to mark it “set as private reply”.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI vaguely remember seeing a plugin. Might want to search there too.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThat’s handled by buddypress and wordpress. See if google provides some insight.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatormain files > demo content > revolution slider > home-default.zip (same as the page name)
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThat’s a VC issue. It even happens with non-Kleo related options like the built in wordpress visibility and template fields. I couldn’t find much info on the subject since they dont appear to have a proper forum, but I do see that allowing the selecting of page settings on the frontpage is on their roadmap, so maybe it will work then. Either way, you might want to ask them about it: http://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431/comments
For what its worth, I’ve been using VC for over a year and I never use the front page editor. Its a pain.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAhh. Okay. More complex than I thought. Most of what you need to know will be in the Buddypress codex: https://codex.buddypress.org/ Good luck.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHello. I’m able to set up a community site in about 45 mins. The kleo team has included demo data for all types of sites. Instead of loading all the demo data, you can install specific pages that you think will work well for your community by selecting “specific page” in the import field.
Here’s the basics of what I normally do to set up a site.
Install WordPress
Install Kleo
Install Kelo Child theme and activate it
You will get notifications about suggested plugin installs. For a community based site, I usually only install K-elements, buddypress – bbpress and revolution slider.
After those are installed, you need to go through the set up of WordPress, buddypress and bbpress.
Then I import the pages I need. I start with Home Default (community)
I set my custom menu and sidebar widgets.Site’s ready.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts