epicdevspace
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Plugin with Buttons for navigation within postHi Somil
You just need to apply your preferred styling to the .page-nav class
Do you want some CSS code to point you in the right direction ?
Forum: Fixing WordPress
In reply to: Android app not connecting Error invalid ssl certifcateHi
Please provide a link to your site.
Hi there
Do you still have the backup available? I suggest starting from scratch.
Unzip contents to your public_html folder
Open your SQL file in a text editor and find & replace instances of :
http://www.mywebsite.com with http://ipaddress
http://mywebsite.com with http://ipaddressUpload your SQL to your database
Update your database info in your existing wpconfig.php
Side note: If you have any theme settings etc. you need to export then import this separately.Let me know if you need additional help.
All the best!
Forum: Networking WordPress
In reply to: Limiting WooCommerce login access in WPMUIt restricts access to each multisite to users of that particular multisite. Ie. users of site A cannot access site B and vice versa.
Hi
It’s most likely due to a plugin. Disable your plugins , then enable them one at a time to catch the likely culprit.
All the best!
Forum: Fixing WordPress
In reply to: use html to override CSSHi
This is incorrect usage all round. I recommend reading up on child themes and CSS as you will need to neaten up the code at some point.
As for your question above you can add this line of css:
a.external { font-size: 14px !important; }Remove the !important declaration in your body .row a{} , it seems unnecessary.
All the best!
Forum: Fixing WordPress
In reply to: Need to exclude 'Forgot Password' from Google searchHi
Try this:
User-agent: * Disallow: /index.php?action=forgot*All the best!
Forum: Networking WordPress
In reply to: Limiting WooCommerce login access in WPMUHi
Add this line of code to wp-config.php
define( 'MS_PROTECT_NETWORK', true );All the best!
Forum: Fixing WordPress
In reply to: How do I fix my parse error?Hi ,
I agree with @jan Dembowski and the others that posted here.
It’s counter intuitive to fix the header.php as there might be an endless supply of bugs to fix thereafter. You site is at risk of encountering unpredictable issues every time you update WordPress (and updates are necessary).
I highly recommend considering a new theme or hiring a professional to create something similar.
All the best.
Forum: Fixing WordPress
In reply to: Cant find codes…Hi again ,
I need additional information on the problem you’re experiencing.
Do you want to update your main menu ?
Forum: Fixing WordPress
In reply to: Title Prepend causing RepeatsHeya
This should do it
function show_as_tip_in_feed($title, $id) { $author_id = get_post_field('post_author', get_the_ID()); if((get_the_author() === "Labyrith") && ( in_the_loop() )) { $title = '<span style="color: #2D90CC;">[Official] </span>'.$title; } else { $title = $title; } return $title; } add_filter('the_title', 'show_as_tip_in_feed', 10, 2);as for b) I need a bit more info on what you need to accomplish.
All the best!
Forum: Fixing WordPress
In reply to: logo blurry as hell on mobileHi Marie
You can add your css to the custom CSS panel under your theme settings (if available) or you can create a child theme and add your css to your style.css file (best practice).
I cannot address the issues experienced as this is theme specific but the code provided should point you towards a fix.
I recommend contacting the theme’s author should you choose not to go the CSS route.
All the best!
Forum: Fixing WordPress
In reply to: How do I fix my parse error?Please post your header.php code
Forum: Fixing WordPress
In reply to: title problemHi
Use
<title><?php echo bloginfo( 'name' ); ?></title>Forum: Hacks
In reply to: Upload zip files in custom meta boxHi
Please provide the error message you see after attempting to upload your zip.
Also try
$supported_types = array('application/zip,application/octet-stream');