Forum Replies Created
-
Author
-
rikbutterflyskull
ParticipantI want to know one thing. In Wide layout the max width is always 1440px?
rikbutterflyskull
ParticipantAlready done it yesterday. This method gives for me always the 1200px as max width
rikbutterflyskull
ParticipantKleo supports the main GeoDirectory Core plugin, not the addons like Events/Custom Post Type or Advance Search. In the basic search shortcode there isn’t the cpt/events selector.
You should customize the entire search bar with CSS ( new width % for media queries) if you activated CPT/Events addon.
Try this in style.css
COPY CODE@media (min-width: 1200px) { .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.search_text, .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.snear { width: 29%; } .geodir-search .search_by_post, .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.geodir_submit_search { width: 20%; } .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search { padding: 10px; } } @media (min-width: 992px) and (max-width: 1199px) { .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.search_text, .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.snear { width: 28%; } .geodir-search .search_by_post, .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.geodir_submit_search { width: 20%; } .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search { padding: 10px; } } @media (min-width: 768px) and (max-width: 991px) { .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.search_text, .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.snear { width: 27%; } .geodir-search .search_by_post, .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.geodir_submit_search { width: 20%; } .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search { padding: 10px; } } @media (min-width: 320px) and (max-width: 767px) { .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.search_text, .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.snear { width: 100%; margin: 5px auto; } .geodir-search .search_by_post, .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search input.geodir_submit_search { width: 100%; margin: 5px auto; } .geodir_advanced_search_widget .geodir-loc-bar .geodir-loc-bar-in .geodir-search { padding: 10px; margin: 5px auto !important; } .geodir_advanced_search_widget input, .geodir_advance_search_widget input { margin: 5px auto !important; } }
Attachments:
You must be logged in to view attached files.rikbutterflyskull
ParticipantWide Layout issues for me too. I tested both version, 4.0 and 4.01. See the screenshots.
Attachments:
You must be logged in to view attached files.rikbutterflyskull
ParticipantFor my site works, I do not know what might be in your case
Attachments:
You must be logged in to view attached files.rikbutterflyskull
Participantoh i had forgotten a piece of code, i’m really sorry 😀
COPY CODEfunction cart_to_shop() { if ( is_woocommerce() || is_cart() || is_checkout() ) { } else { echo "<style type=\"text/css\" media=\"screen\">.shop-drop {display:none!important;}</style>"; } } add_action('wp_head', 'cart_to_shop');
rikbutterflyskull
Participantafter
<?php
COPY CODE/** * @package WordPress * @subpackage Kleo * @author SeventhQueen <themesupport@seventhqueen.com> * @since Kleo 1.0 */ /** * Kleo Child Theme Functions * Add custom code below */
rikbutterflyskull
Participantrikbutterflyskull
ParticipantSorry this is correct:
COPY CODEfunction cart_to_shop() { if ( is_woocommerce() || is_cart() || is_checkout() ) { } else { echo "<style type=\"text/css\" media=\"screen\">.shop-drop {display:none!important;}</style>"; } }
rikbutterflyskull
ParticipantTaken from this topic: https://archived.seventhqueen.com/forums/topic/hide-menu-on-all-pages/#post-96077
Prerequisites: WooCommerce, wc pages, Theme Option > Woocommerce > Menu cart location* = Primary.
add this to child functions.php
COPY CODEfunction cart_to_shop() { if ( is_woocommerce() || is_cart() || is_checkout() ) { } else { echo "<style type=\"text/css\" media=\"screen\">.shop-drop {display:none!important;}</style>}"; } }
is_woocommerce reference. For is_cart and is_checkout look at “includes/wc-conditional-functions.php” source.
rikbutterflyskull
Participanthttps://archived.seventhqueen.com/forums/topic/sidebar-for-buddypress-pages
You can set a custom sidebar only for Groups and Activity page. Members/Profile page use the Main sidebar and you can’t change this by default settings.
There are three possibilities:
1) Look for a plugin to setup sidebars (and check which works with BuddyPress)
2) Ask in the BuddyPress Support/Forums
3) Write custom codeFebruary 17, 2016 at 16:36 in reply to: What would be good plugins for points and Q & A that integrates well with kleo ? #104333rikbutterflyskull
ParticipantHi, while i was looking for a Stackexchange plugin i found this DW Question & Answer, similar to CM Aswer.
For your second post, read this https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status
Regards
rikbutterflyskull
ParticipantCause that string is named Clear.
See yourself http://seventhqueen.com/themes/kleo/shop/ship-your-idea/
February 16, 2016 at 00:07 in reply to: GEO Directory Listing page / which template to customize? #104042rikbutterflyskull
Participant@Andrei i’ve tried your css and not working. After a deep search i found many solutions, the one that works for me:
COPY CODE:lang(it) .map_category>.toggle:before { content: 'Filtra le Categorie' !important; } :lang(en) .map_category>.toggle:before { content: 'Categories Filter' !important; }
putting it in kleo-child/style.css
rikbutterflyskull
ParticipantNo it’s not a bug, but is nosense because i set a featured image in Blog Option for Blog Post.
Thanks for your reply, i’ll check this code lines by myself for a solution.
February 10, 2016 at 20:39 in reply to: Geo Directory Location Manager – Search bar oversize #103240rikbutterflyskull
Participant@chrisat i could help you, but you should buy the six months subscription from wpgeo, because i use all the premium addons to develope my project. The free geodirectory code is too limited to make some interesting things. And you must need to know some php/html/css programming to adjust some part
February 10, 2016 at 15:26 in reply to: Geo Directory Location Manager – Search bar oversize #103117rikbutterflyskull
ParticipantCOPY CODEadd_action('kleo_before_content','add_search_map'); function add_search_map() { if (geodir_is_page('search') || is_post_type_archive() && in_array(get_post_type(), geodir_get_posttypes())) { echo do_shortcode('[gd_listing_map width=100% height=350 autozoom=true scrollwheel=false]'); } }
Next time use the search function included in this forum 🙂
February 10, 2016 at 15:19 in reply to: Geo Directory Location Manager – Search bar oversize #103116rikbutterflyskull
ParticipantI don’t use the GD search system, cause the ajax search included in Kleo is better.
rikbutterflyskull
ParticipantTwo more important things:
1) To see a PMPro level as role in Nav Menu Roles plugin you must install PMPro Roles (free addon in Membership > Addon page) that adds a WordPress Role for each Membership Level.
2) GeoDirectory BuddyPress Integration is a premium addon, not free.
rikbutterflyskull
ParticipantHi, i’ve got that addon and i have a similar setup.
The GD BuddyPress Addon merges author listing info and dashboard with BuddyPress Profile, Registration and Login and creates three tabs: 1) “Place/PIN” tab for manage lisings, 2) Favorites PIN tab, 3) Reviews Tab.
No “Add Listing” page in BuddyPress and no options to limit the listing number which users can publish, not for now. PMPro GD and are not natively integrated with each other.
To give only to specific pmpro levels the ability to add places you have to set menu items visibility only to chosen level, using “Nav Menu Roles” plugin.
You must also limit the page access (Page/Post Levels Restrict Box) to prevent the WordPress search indexing and google engine indexing. If you don’t this the “Add Listing” page will be accessible from search results.
February 7, 2016 at 17:21 in reply to: Change KLEO page title for archives and other wordpress pages #102524rikbutterflyskull
Participant@Abe is the same as using the .po files?
rikbutterflyskull
ParticipantHi, i’m studying Kleo for three months and now i want to share some my ideas with you. Sorry if i repeat something, i haven’t read the entire forum yet. I not consider functions that are available by plugins.
0) I change the admin bar “Theme Option” in “KLEO” to use less space.
1) Color Management + dynamics.css for buttons is not so clear. Adding a section in Theme Options > Styling options > Buttons will be a useful thing.
2) Theme Options > Fonts needs a section for Navigation/Menu to set a different nav font-family, weight and move the “Main Menu Font size” in this area.
3) Geodirectory Templates in according with the main Kleo style, in particular for sidebars, detail tabs.
4) Theme Options > Membership. Possibility to rearrange the Membership Setting list showed in membership page tables, to move down the inactive features.
5) Theme Options > bbPress. Different layout for forum index and topics, as BuddyPress options page.
6) A new section in this forum to share snippets, functions for kleo and supported plugin. Search quickly some integration could be interesting. Please activate the time limited reply editing.
Thanks for your brilliant work with Kleo.
February 4, 2016 at 15:20 in reply to: Code to hide blog posts from buddypress activity stream #102108rikbutterflyskull
ParticipantBuddyPress has “Site Tracking” toggle to turn on/off blog posts/comments activity record. Why not use that?
Attachments:
You must be logged in to view attached files.rikbutterflyskull
ParticipantAlso in the sidebar of GD Details page, with Menu and some other elements
Attachments:
You must be logged in to view attached files.rikbutterflyskull
ParticipantAdd to functions.php for GD Listing pages full-map:
COPY CODEadd_action('kleo_before_content','add_map'); function add_map() { if (is_post_type_archive() && in_array(get_post_type(), geodir_get_posttypes())) { echo do_shortcode('[gd_listing_map width=100% height=350 scrollwheel=false]'); } }
Customize your map with GD Shortcodes
rikbutterflyskull
ParticipantHi, i had the same problem today. Solved by the first function
COPY CODEadd_action('kleo_before_content','add_map'); function add_map() { if (is_post_type_archive() && in_array(get_post_type(), geodir_get_posttypes())) { echo do_shortcode('[gd_listing_map width=100% height=350 scrollwheel=false]'); } }
replacing the shortcode [gd_homepage_map] only for homepage with [gd_listing_map] for listing page, in according with Geodirectory shortcodes
rikbutterflyskull
ParticipantNo, not for now. im only thinking to create an educational/public websites and in Italy a .gov site must be accessible from Screen Reader, only-keyboard input/navigation, etc.
Thanks for your time
-
AuthorPosts