stanwilliams
Forum Replies Created
-
Update status resolved:
I uninstalled and reinstalled the plugin and it works as expected now. The URL to the page is case insensitive as it should be ! I am still at a loss to explain that though… 🙂Forum: Fixing WordPress
In reply to: Getting ob_end_flush(): errorI realize this is late but perhaps it will help someone else If you have already resolved the problem.
I fixed that error by adding the following code in theme functions:
________________Copy and past the code below______________remove_action( ‘shutdown’, ‘wp_ob_end_flush_all’, 1 );
________________Copy and past the above code______________
You can use a plugin such as “My Custom Functions” plugin to do it safely.
Enter this into the plugin settings while it is switched to off (Red) on the toggle switch you will see after you navigate to Plugins / installed plugins, and then click Settings on the “My Custom Functions” plugin.Paste in the above code in the space provided there and then click Save. After you save it Then set it to ON (Green) and then click save again. Done.
Better explanation of the plugin:
On the “Main” tab, place your PHP code in the field, switch the toggle to the “ON” position and click the “Save changes” button.In the off chance it crashes a website ( I have never had it to) but this is the instructions to fix it:
The plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This is due to the fact that your custom code has a syntax error that this plugin could not detect. When this happens with you, please perform the following steps.
Access your server via FTP or SFTP. If you aren’t sure how usually your web hosting provider will have instructions somewhere on their website.
Browse to the directory wp-content/plugins/my-custom-functions/. Please contact your web hosting company to get help if you can’t find this folder.
Rename the file START to STOP. This will stop the execution of your custom code.
Log in to Admin Area of your WordPress website.
Go to the plugin settings page Settings ➡ PHP Inserter.
Edit/fix your custom code that you entered before the crash.
Return to the plugin folder and rename the file STOP to START and you’re done!- This reply was modified 7 years, 10 months ago by stanwilliams. Reason: Fix Typo
- This reply was modified 7 years, 10 months ago by stanwilliams. Reason: minor correction
- This reply was modified 7 years, 10 months ago by stanwilliams.
Thanks James! I saw that! I tried to go to fontify.me. I found where a style sheet was being called from that site, Finally 🙂
- This reply was modified 8 years, 9 months ago by stanwilliams.
Forum: Plugins
In reply to: [PayPal for Digital Goods] what if my client has no Paypal developer account?Thank smbrsolution,
I meant the client I was building the website for which I wanted to use this plugin. I’d need access to their paypal account and they didnt want to try to find the API details for me… I finally found one that I can have the payments sent to their paypal email, and so they (the client I built the site for) didn’t have to have a developer account at Paypal and sandbox / API credentials. I have them for MY paypal but their products on their website has to pay into Their Paypal account. But I got it though. This plugin is nice though, if I ever need one for Myself since I have the API credentials.Forum: Fixing WordPress
In reply to: Remove Powered by WordPressI didn’t specify the location of the “inc” directory or folder, it would be from your root website directory
wp-content/themes/unite/inc/extras.phpI will paste in the edited commented out version of extras.php for you:)
Make sure you go to form WP Admin, go to:
Customizing ▸ Unite Options then select Footer and in the bottom box where it says “Footer information Copyright text in footer” put your own footer verbiage Like I suppose you already have 🙂
But when I commented out thos elines in Extras.php it still displaye only the word Unite in the bottom right of the footer, but when I put copyright text in that box I mentioned , Then it only displays the copyright text that I entered.Here is Extras.php with those lines edited out so as to NOT display the Powered by etc.:
___________________________[ Redacted ]
Forum: Fixing WordPress
In reply to: Remove Powered by WordPressYou can view that file “extras.php” on Github, here:
https://github.com/puikinsh/Unite-Theme/blob/master/inc/extras.php#L196
If it iisn’t available to edit in your WordPress admin you would have to use a file manager in your Cpanel or an FTP client like Filezilla etc as an example to edit and then save “extras.php” by commenting out those lines.- This reply was modified 8 years, 11 months ago by stanwilliams.
- This reply was modified 8 years, 11 months ago by stanwilliams. Reason: Fix a typo
- This reply was modified 8 years, 11 months ago by stanwilliams.
Forum: Fixing WordPress
In reply to: Remove Powered by WordPressFor that theme it is in a separate folder “inc” and named extras.php lines 196 to 205. In the location inc/extras.php
Here:/** * function to show the footer info, copyright information */ function unite_footer_info() { printf( esc_html__( '%1$s powered by %2$s', 'unite' ) , '<a title="Unite Theme" href="http://colorlib.com/wp/unite/" target="_blank">Unite Theme</a>', '<a href="http://ww.wp.xz.cn/" target="_blank" title="WordPress">WordPress</a>'); } add_action( 'unite_footer', 'unite_footer_info', 30 ); if ( ! function_exists( 'get_unite_theme_options' ) ) {- This reply was modified 8 years, 11 months ago by stanwilliams.
Forum: Developing with WordPress
In reply to: Removing WordPress and Theme Credits from Theme Footer@starapple I agree ! I was just finding a way to accomplish it and of course unless it was incorporated into a child theme it would all be lost at the first theme update anyway.
And I was just at their support forum and saw this post in reply to someone who wnated to remove “Powered by…” from the footer:
http://www.themehorse.com/support-forum/topic/removing-the-footer/
“Hi eco_p,You cannot remove footer and we cannot help you. IF you are good at coding then you can customize the code but create child theme while customizing the code because while updating to new version your customized code will not be lost. Upgrade to premium features will helps to remove the credit link as it is our premium feature.
Thank you”
So I agree with I would either use his functions code or Another theme.- This reply was modified 9 years, 2 months ago by stanwilliams.
- This reply was modified 9 years, 2 months ago by stanwilliams.
- This reply was modified 9 years, 2 months ago by stanwilliams.
Forum: Developing with WordPress
In reply to: Removing WordPress and Theme Credits from Theme FooterP.S. you still need do something like use the Custom CSS that @starapple suggested to remove the “Powered by WordPress” from the footer.
I just made this screenshot:

- This reply was modified 9 years, 2 months ago by stanwilliams.
- This reply was modified 9 years, 2 months ago by stanwilliams. Reason: add info
- This reply was modified 9 years, 2 months ago by stanwilliams.
Forum: Developing with WordPress
In reply to: Removing WordPress and Theme Credits from Theme FooterI just downloaded that theme (Clean retina) and tried it on a local install to have a look out of curiosity, and I see that there is a directory named footer_info here wp-content/themes/clean-retina/library/footer_info
inside is a file named cleanretina-footer_info.php edit that file to change credits. Here is the code at the end of that file:function cleanretina_wp_link() { return '<a href="'.esc_url( 'http://ww.wp.xz.cn' ).'" target="_blank" title="' . esc_attr__( 'WordPress', 'clean-retina' ) . '"><span>' . __( 'WordPress', 'clean-retina' ) . '</span></a>'; } /** * To display a link to cleanretina.com. * * @return string */ function cleanretina_themehorse_link() { return '<a href="'.esc_url( 'http://themehorse.com' ).'" target="_blank" title="'.esc_attr__( 'Theme Horse', 'clean-retina' ).'" ><span>'.__( 'Theme Horse', 'clean-retina') .'</span></a>'; } ?>`
- This reply was modified 9 years, 2 months ago by stanwilliams.
- This reply was modified 9 years, 2 months ago by stanwilliams. Reason: typos
- This reply was modified 9 years, 2 months ago by stanwilliams.
- This reply was modified 9 years, 2 months ago by stanwilliams.
- This reply was modified 9 years, 2 months ago by stanwilliams.
Forum: Plugins
In reply to: Wordfence possibly blocked me out, and I can’t resolve itDo you have a caching plugin?
Like W3 Total Cache? if so they will cause your problem.
You should clear their cache. you may have to temporarily rename the caching plugin directory to disable it.Forum: Plugins
In reply to: Wordfence possibly blocked me out, and I can’t resolve itThat is strange, it should remove your Ip. wordfence stores it’s data the wordpress MySQL database.
I found these which may help:https://docs.wordfence.com/en/Help!_I_locked_myself_out_and_can%27t_get_back_in._What_can_I_do%3F
Locked out of your website by Wordfence, how to solve it
http://metadata.mx/wordfence/If neither these nor searching Google finds a solution, You may have to submit a ticket to the plugin author, here:
https://support.wordfence.com/support/home- This reply was modified 9 years, 7 months ago by stanwilliams. Reason: Correct a typographical error
Forum: Plugins
In reply to: Wordfence possibly blocked me out, and I can’t resolve itWhich browser are you using? I’m sure you’ve thought of it, but in case you haven’t perhaps if you deleted the browser cache? ( I suggest this only because you said that you had uninstalled the Wordfence plugin)
If that doesn’t help. I would suggest logging into your hosting cPanel or using an ftp program and looking in the plugins folder to see if Wordfence plugin is still there. If you delete the plugin (Wordfence folder) WordPress should deactivate the plugin and hopefully let you back in. I have used Wordfence before a few years ago and accidentally blocked myself I can’t remember what steps i took to resolve it now but I think this should work.
P.S.
The plugins folder is inside the wp-content folder .Forum: Plugins
In reply to: [Rename wp-login.php] Keep this plugin aliveThank you for creating this wonderful plugin and for looking at pull requests and all that you do Ella ISeulde Van Dorpe !
This is always the First plugin I install after I install WordPress .Forum: Reviews
In reply to: [evolve] Contact Form“But I cannot for the life of me figure out how to activate the contact page. “
Go to an empty page , on the right where it says Page Attributes, Underneath where it says Template, click the selector box that by default says Default Template when that opens select Contact.
Hope it helps.