Forum Replies Created
-
Author
-
sharmstr
ModeratorCan you clarify what you mean by “The SMTP plugin is installed but that is not working either.” Are you saying the plugin isnt working or it didnt fix the issue. Thanks.
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
ModeratorHmmm. In \buddypress\members\single\member-header.php add some text, save it and see if it shows up on your site. I want to see if it loading that file or a different one.
It definitely works (see attached) so I’m thinking its a caching issue on your site. (I know you said you cleared 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
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorThat solution is here: https://archived.seventhqueen.com/forums/topic/how-to-deactivate-the-effects-on-post-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
ModeratorCouple of things..
Do you have email notifications turned off in your profile: Your profile > Settings > Email
It depends on what notifications they are. There a plugins out there that will add a notification to the bp notification table, but dont send emails. Is the notification you’re not receiving via email listed in Your profile > Settings > Email?
Could be a server smtp issue. If this is the case, installing an SMTP plugin usually fixes it. Here’s one that I use: https://wordpress.org/plugins/wp-mail-smtp/
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
December 18, 2015 at 18:50 in reply to: How can I eliminate Archive for category: Category name so that it would become Categoryname? #94132sharmstr
ModeratorI see the code. See attached.
In any case, here it is
COPY CODE//Add me to child theme functions.php function kleo_title() { $output = ""; if ( is_category() ) { $output = __('Archive for category:','kleo_framework')." ".single_cat_title('',false); } elseif (is_day()) { $output = __('Archive for date:','kleo_framework')." ".get_the_time('F jS, Y'); } elseif (is_month()) { $output = __('Archive for month:','kleo_framework')." ".get_the_time('F, Y'); } elseif (is_year()) { $output = __('Archive for year:','kleo_framework')." ".get_the_time('Y'); } elseif (is_search()) { global $wp_query; if(!empty($wp_query->found_posts)) { if($wp_query->found_posts > 1) { $output = $wp_query->found_posts ." ". __('search results for:','kleo_framework')." ".esc_attr( get_search_query() ); } else { $output = $wp_query->found_posts ." ". __('search result for:','kleo_framework')." ".esc_attr( get_search_query() ); } } else { if(!empty($_GET['s'])) { $output = __('Search results for:','kleo_framework')." ".esc_attr( get_search_query() ); } else { $output = __('To search the site please enter a valid term','kleo_framework'); } } } elseif (is_author()) { $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author')); $output = __('Author Archive','kleo_framework')." "; if(isset($curauth->nickname)) $output .= __('for:','kleo_framework')." ".$curauth->nickname; } elseif (is_tag()) { $output = __('Tag Archive for:','kleo_framework')." ".single_tag_title('',false); } elseif(is_tax()) { $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); $output = __('Archive for:','kleo_framework')." ".$term->name; } elseif ( is_front_page() && !is_home() ) { $output = get_the_title(get_option('page_on_front')); } elseif ( is_home() && !is_front_page() ) { $output = get_the_title(get_option('page_for_posts')); } elseif ( is_404() ) { $output = __('Error 404 - Page not found','kleo_framework'); } else { $output = get_the_title(); } if (isset($_GET['paged']) && !empty($_GET['paged'])) { $output .= " (".__('Page','kleo_framework')." ".$_GET['paged'].")"; } return $output; }
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
ModeratorNo need to apologize 🙂
I’m locked out of your site 🙁
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 the one. Did you keep the same directory structure?
\buddyapp-child\buddypress\members\single\member-header.php
Also, can you please start new topics for new questions? It makes searching the forum so much easier. Thank you.
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 depends. What do you have set in Settings > Reading?
For the share buttons, turn them off: Theme Options > Social Share
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
ModeratorWordpress doesnt allow you to do that. They reserve the page and do all the display processing using PHP. Its similar to buddypress in that way.
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
ModeratorGreat!
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
Moderatorhere’s the screenshots
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
ModeratorGlad to hear it 🙂
*** removed the first part of my response as it didnt apply to you ***
You dont need to be a coder. Go to WP Admin -> Appearance > Widgets. Put a text widget in one of your footers and add [kleo_social_icons]. Then go to Theme Options > General and paste the css I gave you into your quick css field.
I have no idea if that plugin will work. I dont see that it will block users to certain buddypress groups. All it says is that it syncs the account info. You need to speak with them.
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 like your site btw 🙂
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 🙂
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
ModeratorThis would require custom jquery code that is beyond the scope of support. If you’d like to get a quote on the required code, please contact dev@seventhqueen.com.
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
ModeratorExactly. I mentioned that in my vary first response. 🙂
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
ModeratorIt probably has something to do with your cloudfare settings. It looks like its causing a delay in loading the jquery that processes the animations.
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
Moderatormoving because this isnt a bug…
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 correct. Its called “Main Section” which means it will only change the main content area. Pop this into your quick css and you should be good.
COPY CODEbody { background-color: #282828 !important; }
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
ModeratorThis isnt possible without adding custom jquery. I’ll move this to the feature request forum.
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
December 18, 2015 at 16:09 in reply to: New Forum add from a User and i cant chance cover Photos #94090sharmstr
ModeratorI’m waiting for the developers to get back to me. Please 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
ModeratorI cant really debug since its a paid plugin. Instead of the css I gave you, can you try this in your child theme’s functions.php file?
COPY CODEadd_filter( 'kleo_theme_settings', 'add_review_icon' ); function add_review_icon( $kleo ) { $kleo['set'][] = array( 'id' => 'bp_nav_reviews', 'title' => esc_html__( 'Reviews', 'buddyapp' ), 'type' => 'select', 'default' => 'panorama-fisheye', 'choices' => kleo_icons_array(), 'section' => 'kleo_section_bp_icons', 'customizer' => true, 'transport' => 'refresh' ); return $kleo; }
After you add it, go back into customizer and try to set a new icon.
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 need to increase the amount of memory allocated to WP. At present, you only have 64MB (the default). You need at least 128M and possibly more depending on how many/which plugins you’ll be using. Here are directions for increasing the memory: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
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 probably have a plugin that locks the IP address, not the account.
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
ModeratorSounds like those two pages aren’t the default buddypress pages. The settings in Theme Options > Memberships work on whatever pages you have set in Settings > Buddypress > Pages.
If that’s the case, you can use the standard way of locking down pages using PMPro by editing the page and selecting the appropriate level.
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
Moderatorsee 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
ModeratorYou still havent published the app.
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
ModeratorEdit the row settings and set Inner Container to No.
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
ModeratorWordpress does that with any page you delete. Purge your trash.
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
December 18, 2015 at 15:18 in reply to: How to arrange the Store page by Categories not by alphabet ? #94076sharmstr
ModeratorI havent tried this plugin but looks promising: https://wordpress.org/plugins/woocommerce-product-sort-and-display/
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 you’ve translated ‘cart’ to ‘bag’. If that’s the case, go into your whatever program you’ve used for translation and change ‘Bag Totals’ to ‘Totals’.
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
Moderator1 – You can add the social links you’ve set in theme options by adding [kleo_social_icons] to one of the footer widgets. Then add this to your quick css.
COPY CODE#footer .kleo-social-icons li { display: inline; font-size: 20px; } #footer .kleo-social-icons .ts-text { display: none; }
2 – Buddypress doesnt have group categories by default. You’ll have to find a plugin for that. I found this, but have never used it: http://wptavern.com/new-plugin-adds-taxonomies-to-buddypress-groups
3 – You can use whatever size you want. The logo will be downsized to fit depending on how you’ve set up your header. By default, it will be 88px tall.
4 – There’s nothing built into PMPro for that. It will require either a plugin or custom code.
5 – You’ll need a plugin for that. Try Invite Anyone. Its written by the same people who work on the buddypress plugin.
6 – http://www.yoursite.com/members Unless you’ve set a different page in Settings > Buddypress > Pages
7 – Same answer as 4.
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
ModeratorTheme Options > Header > Display 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
December 18, 2015 at 14:26 in reply to: How can I eliminate Archive for category: Category name so that it would become Categoryname? #94067sharmstr
ModeratorAdd the code in that link to your child theme’s functions.php file. Delete the text “Archive for category:” and whatever other text you dont want to show.
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 miss-spoke earlier. I just tested it an you can remove just the title for buddypress pages like members and activity by editing the page and enabling Hide The Title in Theme General Settings.
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
ModeratorHere’s what I think you’re not understanding. Those messages are coming from Facebook, not Kleo. It means you haven’t set up your application correctly on Facebook. It has nothing to do with your settings in Theme Options. Go back to your facebook developer page and correct the error. Its telling you that the website URL that you have set up in facebook is wrong. Perhaps you didnt change it after moving your site?
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
ModeratorAre you talking about buddypress 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
ModeratorAccording to your source code you are.
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
Moderatortry changing it to new_blog_comment
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
ModeratorProbably has something to do with the page speed code you’re using. Disable it and see if that fixes 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
-
AuthorPosts