Sidati
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [theme: publication] All formatting lostit looks good from here ??
Forum: Fixing WordPress
In reply to: Entry Processes exceeding while logging into Wp-AdminIf meant in a bad way no actually this procedure makes it faster, the tutorial looks good ??
Upgrading your server is usually helps but that depends on your website traffic and the new host resources.
if you need any advice about hosting i can get you some ??
Forum: Fixing WordPress
In reply to: Site has gone downthis is usually a PHP error, You need to use FTP client or File manager from your Cpanel and got the public_html -> wp-config.php and turn on the debug mode so you can see whats the error.
define('WP_DEBUG', false); => define('WP_DEBUG', true);
Forum: Fixing WordPress
In reply to: Google Maps not workingThat’s pretty clear :P, just add theses lines in your functions.php after changing YOUR_API_KEY with the key you get it from here : https://developers.google.com/maps/documentation/javascript/get-api-key (click
get key
button)add_action('wp_footer', 'google_api_js'); function google_api_js(){ wp_enqueue_script( 'google-map-api', 'https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap'); }
Forum: Fixing WordPress
In reply to: How to get child categories by id?Yes there is a
include
property you can make use of it just :get_categories( array( 'include' => array(1,54,6,9), // add here the ids of categories you want to display 'parent' => $cat_id, 'orderby' => 'id', 'order' => 'DESC', 'hide_empty' => '0', 'number' => $catnum, 'offset' => $offset, 'paged' => $catpage ) );
Forum: Fixing WordPress
In reply to: No text editor on pages and postsRight now i have managed to have the editor back. But when i type a shortcode in or just a plain text, nothing shows up on the page itself…
Any idea?
Did you activate the plugins back ??
Forum: Fixing WordPress
In reply to: Entry Processes exceeding while logging into Wp-AdminTheses are normal queries, WordPress check every time someone visit/refresh your website, if there is any action need to be executed (update WP/plugin/theme, remove expired data ..etc).
This maybe frustrating for some “modest servers” so you need to disable the WP Cronjobs and create a cronjob from your CPanel.Forum: Fixing WordPress
In reply to: ADD MEDIA button not working after WP 4.6 updateNo need to change your theme just contact your theme developer to fix the issue ??
Forum: Fixing WordPress
In reply to: Cannot redirectMaybe you need to remove a current redirection cause visiting :
https://www.timhupkes.com/
redirect me tohttps://www.timhupkes.com/real-home
Forum: Fixing WordPress
In reply to: Google Maps not workingWe need you to provide more details about the error, if you use Chrome please open the website where you have the problem then click F12 then ESC and you will see some errors in red, copy/paste here ??
Forum: Fixing WordPress
In reply to: One wp to a new wp same server migrationMmmh, i thought you have something under the main domain, Sorry ??
Maybe this link helps you out to create .htaccess map redirection :
https://www.htaccessredirect.net/Forum: Fixing WordPress
In reply to: One wp to a new wp same server migrationthat’s a lot of rules :P, just replace it with theses 4 lines :
Options +FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_URI} ^/public/(.*)$ RewriteRule ^(.*) https://rhinoaluminium.co.uk/home/%1 [R=301,NC]
Forum: Fixing WordPress
In reply to: grammar website: The smartest structure (categories, links etc?)Use category structure instead it helps you more and you can add extra property for each category using
add_term_meta
,update_term_meta
&delete_term_meta
, categories will help you if you want to create search filter and they are easy to manage.
Page are usually used for “Contact, About … ect).Why i suggest post-type cause you ask if you can take advantage of archive, Well archives can only list the entries on one specific post-type, so if you use pages or posts for all of your entries, you will have one archive but if you use a post-type for grammar, and another one for vocabulary you will have 2 archives,
for example
site.com/?post_type=grammar
will display all grammar entries whilesite.com/?post_type=vocabulary
displays all vocabulary entries.Forum: Fixing WordPress
In reply to: How Do I Protect BuddyPress Profile Pages PleaseYou must at least see the message : “Only Logged member can see member’s profile.” when you are logged-out, UNLESS your buddypress theme does not support that filter/action.
Anyway as @songdogtech said; try buddypress forums.
Forum: Fixing WordPress
In reply to: How Do I Protect BuddyPress Profile Pages PleaseHi @ma3ry,
there is a buddypress filter you can use, go to Administration -> Appearance -> Editor then choose the functions.php fileAdd this code at the end ot the file just a line before
?>
add_action('bp_before_profile_loop_content', function(){ if (!is_user_logged_in()) { echo '<p>'.__('Only Logged member can see member\'s profile.').'</p>'; return; } })