Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Please follow this topic
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,
Most probably your issue is caused by some plugin i suggest you to disable manually plugins that are installed by logging to ftp and then go to wp-content/plugins/
Now you should rename the plugin folder names, rename all plugins by prefix them folder names with 1 from example, after you prefix all plugins, and your site not displaying the whitepage enable plugins one by one by removing the prefix of certain plugin. In this way you will find what causes this.
Also you can enable wp debug / https://codex.wordpress.org/WP_DEBUG
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorSharmstr answered you here : https://archived.seventhqueen.com/forums/topic/remove-update-from-member-profile-in-search-results/#post-100360
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI see, that’s because the solution i provided to you is available for Kleo – this is a Kleo topic.
I will get back to you with solution
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 disable by adding this function in wp-content/themes/kleo-child/functions.php
COPY CODEfunction KleoDisableAllComments() { if(is_single()) { return false; } } add_filter ('comments_open' , 'KleoDisableAllComments');
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 kh-edv,
Do you have woocommerce installed and activated ? if not try to enable woocommerce see if this will solve the issue.
Let me know
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,
These values can be changed in different methods : .htaccess , php.ini or directly from script. but if you are new to this just call you hosting provide and ask them about these.
http://stackoverflow.com/a/14290695
Anyways, try to this
NOTE : After you start import process when you receive the blank page just refresh the page and the browser will say that will resend the data to server press yes, repeat (3-4-5-6 times)this process until you receive the successful message.
It works in this way to.
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,
This is an advance feature and you should know some php knowledge, as i said in a previous reply “The snippet can be added in wp-content/themes/sweetdate-child/functions.php / Note : the child theme needs to be activated.”
It’s recommended to use sweetdate-child because you will no need to edit parent theme files.
When a unregistered user perform a search they will see a 404 page, if you want to extend the snipped that i have provided you should make them by yourself.
A little tip :
For the redirection replace $query->is_404 = true; from this snippet
COPY CODEif ( $error == true ) $query->is_404 = true; }
with wp_redirect( home_url() ); to redirect to home or read here if you want additional options to that function https://codex.wordpress.org/Function_Reference/wp_redirect
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 @costyclan,
For the members directory use this
COPY CODEbody.directory.members #buddypress #members-list span.update { display: none !important; }
For the search results the last update should be hidden because of the above code.
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 will mark the topic as resolved.
Have a nice week.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 25, 2016 at 14:03 in reply to: Rtmedia shows members with media however users missing #100332Radu
ModeratorHi,
Follow this topic : https://archived.seventhqueen.com/forums/topic/members-not-appearing maybe you will find the solution here
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,
Ok, have a nice week.
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,
Great, have a nice week.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 22, 2016 at 18:46 in reply to: Rtmedia shows members with media however users missing #100024Radu
ModeratorHi,
Strange, do you have install some plugin recently ? If yes this can be a cause for that.
Maybe this will help : go to Wp-admin -> Tools -> Buddypress -> check all options
Count friends for each user
Count groups for each user
Count total members
Repair user “last activity” dataCheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi Whale,
Can you please provide a screenshot that pointing out the dividers ?
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,
Envato says : For any wordpress installation that uses themeforest products you should have a unique licence.
You can make your blog inside the principal install.
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 please provide the page url where you need to style the info tab ?
An additional image that pointing out where is the info tab will be helpful
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,
Please follow this answer : https://archived.seventhqueen.com/forums/topic/demo-content-imposible-to-import-or-install#post-87722
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,
Here is a code that allows only logged in users to search.
COPY CODEfunction SearchOnlyForLoggedInUsers( $query, $error = true ) { if (!is_user_logged_in()) { if ( is_search() ) { $query->is_search = false; $query->query_vars[s] = false; $query->query[s] = false; // to error if ( $error == true ) $query->is_404 = true; } } } add_action( 'parse_query', 'SearchOnlyForLoggedInUsers' ); add_filter( 'get_search_form', create_function( '$a', "return null;" ) );
The snippet can be added in wp-content/themes/sweetdate-child/functions.php / Note : the child theme needs to be activated.
Cheers
Radu
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,
Maybe because it doesn’t have enough memory i think
Please enable wp_debug / https://codex.wordpress.org/WP_DEBUG#Usage if errors appears and shows something related to “Fatal error: Allowed memory size of 134217728 bytes exhausted”
Please follow this http://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.htmlLet me know
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 think your white page is caused by that redirect function
Please replace that redirect function with that
COPY CODE/----------------------------------------------------------------------------/ // redirects for login / logout /----------------------------------------------------------------------------/ add_filter('woocommerce_login_redirect', 'login_redirect'); function login_redirect($redirect_to) { return home_url(); } add_action('wp_logout','logout_redirect'); function logout_redirect(){ wp_redirect( home_url() ); exit(); }
If the function not working please remove redirect related codes from that file and install this plugin https://wordpress.org/plugins/peters-login-redirect/
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 see but the default wp and buddypress installation have all countries in that dropdown
I suggest you to reinstall buddypress
Let me know
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYes, you should increase your php max memory / http://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.html
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,
Breadcrumbs font color
COPY CODEol.breadcrumb li, ol.breadcrumb li a span{ color: red !important; }
Page title
COPY CODE#page-title h1 { color: red !important; }
post titles font color
COPY CODE.entry-title h2 a { color:red !important; }
You will add the CSS to wp-admin -> appearance -> theme options -> quick css
I see that the tagline is missing please add it and i will give you a css for that
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,
Use this css
COPY CODE.second-menu .search-form .header-search-button:before { color: red !important; }
Let me know
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 customize that text by using this css rule
COPY CODE.caroufredsel_wrapper ul li .entry-content h4 a { font-family: monospace !important; font-size: 13px !important; }
Replace the font family values and font size.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome
Have a nice week
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 21, 2016 at 21:10 in reply to: How to enable pingbacks and trackbacks on individual post pages? #99840Radu
ModeratorHi,
You’re welcome,
You could ask things here or in new topics, but it’s ok for all users to speak in english so we can all understand the fixes that we provide here.
Have a nice week
Salutari !
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
My location is Romania, just generate an random username to can view that certain page, after we solve this you can delete that account.
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,
Sorry for the late reply,
Make sure that K-elements plugin is up to date and active !
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,
Please remove all css that you have used to expand menu and the code that i have given you previously and use the following
COPY CODE.widget_nav_menu li.current-menu-parent > ul {display:block ;} .widget_nav_menu li.current-menu-parent>a>span.caret.active:after { content: "+" !important; } .widget_nav_menu li.current-menu-parent>a>span.caret:after { content: "-" !important; } .widget_nav_menu li>a>span.caret.active:after { content: "-" !important; } .widget_nav_menu li>a>span.caret:after { content: "+" !important; font-size: initial !important; }
Let me know
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 please disable the wordfence to can see the page ?
When i try to access your page i receive this
COPY CODEYour access to this site has been limited Your access to this service has been temporarily limited. Please try again in a few minutes. (HTTP response code 503) Reason: Access from your area has been temporarily limited for security reasons Important note for site admins: If you are the administrator of this website note that your access has been limited because you broke one of the Wordfence firewall rules. The reason you access was limited is: "Access from your area has been temporarily limited for security reasons". If this is a false positive, meaning that your access to your own site has been limited incorrectly, then you will need to regain access to your site, go to the Wordfence "options" page, go to the section for Firewall Rules and disable the rule that caused you to be blocked. For example, if you were blocked because it was detected that you are a fake Google crawler, then disable the rule that blocks fake google crawlers. Or if you were blocked because you were accessing your site too quickly, then increase the number of accesses allowed per minute. If you're still having trouble, then simply disable the Wordfence firewall and you will still benefit from the other security features that Wordfence provides. If you are a site administrator and have been accidentally locked out, please enter your email in the box below and click "Send". If the email address you enter belongs to a known site administrator or someone set to receive Wordfence alerts, we will send you an email to help you regain access. Please read this FAQ entry if this does not work. Send me an unlock email This response was generated by Wordfence.
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,
Provide url please.
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,
Do you have a cache plugin ? If yes you should clear your cache, if not please provide admin credentials
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,
Please repeat this action after you disable all plugins, this issue can be caused by a third party plugin
Let me know
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’re welcome
If you use webfont like google fonts you don’t need any licence.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 21, 2016 at 19:14 in reply to: How to enable pingbacks and trackbacks on individual post pages? #99794Radu
ModeratorSalutare 🙂
Cred ca era un mic bug de la template-ul de comentarii, te rog sa inlocuiesti fisierul comments.php localizat aici : /wp-content/themes/kleo/comments.php cu cel atasat.
Spune-mi daca este ok.
O zi frumoasa
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,
Please the login form in that position is not possible without modification php theme files, but instead of this you can use the login button that shows a nice popup when you press on it.
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 added a listing with success not errors on upload (see screenshot)
I suggest you to enable also the wp_debug_log / https://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG_LOG it will store all errors in this file which is located here : /wp-content/debug.log
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,
Add the attached file to wp-content/themes/kleo-child/page-parts/
NOTE : Kleo Child needs to be activated.
Then go to wp-content/themes/kleo-child/page-parts/general-popups.php line 23 and replace the text
<p>Add your desired Text Here 2</p> from inside <p> .. </p>
cheers
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. -
AuthorPosts