Forum Replies Created
-
Author
-
rikbutterflyskullParticipant
The same for me. I think it happen because all replies are private, so there is nothing to read
rikbutterflyskullParticipantHere my workaround
https://archived.seventhqueen.com/forums/topic/ajax-search-resultrikbutterflyskullParticipantFor that you have to buy the MultiLocation addon for 45$ or GeoDir Membership
rikbutterflyskullParticipantFor 7th’s guys, this is what i was writing about in https://archived.seventhqueen.com/forums/topic/kleo-posts-no-longer-working/#post-109310
rikbutterflyskullParticipanthttps://archived.seventhqueen.com/forums/topic/full-width-elements-above-page-headers#post-108862 there’s a method to insert pages content in predefinied and dynamics pages. you can try that
rikbutterflyskullParticipantYou have to upload and set your icon set in each category to see listings on maps
rikbutterflyskullParticipantFor the weight issue i’ll investigate too, cause with a slow loading speed i see first the normal font-weight, for 1sec or less, after the final weight. Thanks for your time
The problem related to GD listing page is the rendering of sidebar elements: in previous (old) screenshot there is a Menu element: in GD Detail page (as others GD pages) is different from normal (Kleo Templates) pages. i don’t know if it’s normal (you not integrate that templates) or is a issue.
rikbutterflyskullParticipantrikbutterflyskullParticipantRead here my reply https://archived.seventhqueen.com/forums/topic/facebook-comments
rikbutterflyskullParticipantwrap-content is the main container, the same container that show pages content, post content and is a core part of code. There is no reason to edit wrap part and risk to break the whole site, cause all you create with pages/post edit/visual composer are inside wrap-content
rikbutterflyskullParticipantYou can disable comments for selected post/pages in quick edit mode without disabling general comments
rikbutterflyskullParticipantKleo and BuddyApp are just different themes with same core components (BuddyPress)
Using the same database for users data and cookie session is possible, not so easy, but possible:
http://www.remicorson.com/share-users-database-on-different-wordpress-installs/
So you can use Kleo for Landing Page and login, but not BP Live Notification, BP menu elements and main Search across the two themes out of box ๐
rikbutterflyskullParticipantThis will be good to see. If we want only Kleo for landing page i think the wp multisite is a good option.
Having Kleo for main pages and BuddyApp as Dashboard is more tricky, but not impossible i think (sharing database for buddypress components and users, cookie sessions, urls, permalinks and redirects between the themes, 404 pages, choosing two separate wp installation or using a multisite, domain/subdomain, SEO and Sitemap, etc.).rikbutterflyskullParticipantAs sharmstr said
Set up your restrictions for Buddypress components for different levels you have already added.
You can’t change these option by default, are related only to buddypress.
To do what you want you have to block all BuddyPress components to “Magazine” subscription, restrict page access by user role and maybe manage user roles capabilities to give new and different features.
I advise you to first read PMPro Docs, WordPress Codex – Roles/Capabilities and the User Role Editor Plugins.(User Role Editor is for skilled WordPress users, use it at your own risk – Review)
After that you can create your own tables and write your features for different Subscriptions (Go Pricing/VC Plugins), route the tables to PMPro Checkout ( see PMPro Docs again ).
So it’s as i’ve done to manage roles from different plugins and pmpro, hope this will help you.
rikbutterflyskullParticipantrikbutterflyskullParticipantYes i have to test again this issue, cause that site now is for testing custom functions before using in main project with latest Kleo update.
i’ll update this topic. thanks
rikbutterflyskullParticipantMy problem might be different from your, cause i have many plugin and extra css styling
rikbutterflyskullParticipantRTMedia is a free plugin with premium addons. You must install and activate first the addon bought.
Your first screenshot is for RTMedia Photo Tagging addon, is written ๐
rikbutterflyskullParticipantIt’s not a plugin problem or a bug, is only a bunch of results in no-scrolling search container ๐
COPY CODE.kleo_ajax_results { min-height: 88px; height: auto; max-height: 400px; overflow-y: scroll; overflow-x: hidden; }
With this i fix my problem hoping to be useful to someone else. I just have to write media queries for other resolutions. Thnaks
Attachments:
You must be logged in to view attached files.March 7, 2016 at 18:08 in reply to: Pulling external posts from Twitter or LinkedIn into buddypress activity streamstream #109038rikbutterflyskullParticipantI’m not using it, only following the work on Github and i would try later. Good to know, i will update you when i try
rikbutterflyskullParticipantBuy the license ๐
March 7, 2016 at 17:40 in reply to: Pulling external posts from Twitter or LinkedIn into buddypress activity streamstream #109019rikbutterflyskullParticipantAre you sure? Last update is Sep 3, 2015 at https://github.com/madgicweb/buddystream
rikbutterflyskullParticipantDon’t use that method, it’s better not touch the core files.
Try to put this in your Quick CSS:
COPY CODE#footer-sidebar-4 {display: none!important;} #footer .col-sm-3 {width: 33%!important;} @media (min-width: 320px) and (max-width: 767px) {#footer .col-sm-3 {width: 100%!important;}}
rikbutterflyskullParticipantYou can disable wp comments and read this http://www.wpbeginner.com/plugins/how-to-install-and-setup-facebook-comments-in-wordpress/
rikbutterflyskullParticipantThe Blog page are a default wordpress template. When you save a page as Blog Page in Reading Setting the default template override your content. You can use for blog/news your page without saving it as Blog Page or see my last reply here https://archived.seventhqueen.com/forums/topic/full-width-elements-above-page-headers#post-108862
rikbutterflyskullParticipantYou can use the Header Content metabox at bottom of page edit. Put your shortcode or html content there. For shorcodes you can build your content with Visual Composer (VC) in page edit, switch to Classic Mode, copy and paste the raw text, or use exiting shortcodes.
For page without editing permission like BuddyPress Page you must use a php function. I write for me three functions:
COPY CODEadd_action('kleo_before_content','add_bpgroup_head'); function add_bpgroup_head() { if (is_page( 61 )) { echo do_shortcode('[shortcode]'); } } add_action('kleo_before_content','add_bpactivity_head'); function add_bpactivity_head() { if (is_page( 6 )) { echo do_shortcode('[shortcode]'); } } add_action('kleo_before_content','add_bpmember_head'); function add_bpmember_head() { if (is_page( 7 )) { echo do_shortcode('[shortcode]'); } }
where 61,6,7 are the Group, Activity and Members page ID, created by BuddyPress. Set your ids. Replace [shorcode] with your shortcode like rev slider shortcode, VC single image. These functions accept only simple shortcodes, not an entire VC page. (example 01 screenshot, a single image in header)
To set a full row with content like entire page structure you must use:
COPY CODEadd_action('kleo_before_content','bp_custom_content_header'); function bp_custom_content_header() { $pageid = 1024; //Page ID $id_page = get_post($pageid); $content = $id_page->post_content; $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); if (is_page( 61 )) { echo $content; } }
where $pageid is the page to show and 61 is still my members page ID (example 02a/b screenshot).
Attachments:
You must be logged in to view attached files.rikbutterflyskullParticipantQuick CSS to hide Last Activity div:
.buddypress #latest-update {display: none;}
That arrows is for Members Navigation. If you have at least another one member it should work
rikbutterflyskullParticipantUPDATE
This
.top-bar .cart-contents {height: 33px!important;}
in quick css or style.css will fix the height when top menu is selected as cart location.rikbutterflyskullParticipantUse the BuddyPress Support or wordpress.stackexchange.com for this things. It’s not a easy task what you want to do
rikbutterflyskullParticipanti fixed the previous snippet for the double title:
COPY CODE// Fix wpseo title add_filter('wpseo_title', 'buddypress_wpseo_title'); function buddypress_wpseo_title($title) { $wpseo = WPSEO_Frontend::get_instance(); $separator = $wpseo->options['separator']; $separator_options = array( 'sc-dash' => '-', 'sc-ndash' => 'โ', 'sc-mdash' => 'โ', 'sc-middot' => 'ยท', 'sc-bull' => 'โข', 'sc-star' => '*', 'sc-smstar' => 'โ', 'sc-pipe' => '|', 'sc-tilde' => '~', 'sc-laquo' => 'ยซ', 'sc-raquo' => 'ยป', 'sc-lt' => '< ', 'sc-gt' => '>', ); if (array_key_exists($separator, $separator_options)) { $separator = $separator_options[$separator]; } $bp = buddypress(); if (bp_is_user()) { return bp_get_displayed_user_fullname() . ' ' . $separator . ' ' . get_bloginfo(); } elseif (bp_is_group()) { return bp_get_current_group_name() . ' ' . $separator . ' ' . get_bloginfo(); } return $title; }
Yoast SEO has know problems with buddypress.
Another trick: https://bp-tricks.com/coding/making-buddypress-compatible-with-the-wordpress-seo-plugin-from-yoast/ -
AuthorPosts