juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Deleting post date from blog pageWhat theme are you using?
Have you asked the themes author?
Have you looked at the site with a code examiner (like the Firebug extension in FireFox)?Personally I avoid sites that do not put dates on thier information. How am I to know if the information is from esterday or five years ago? If you don’t date your posts, you are doing a disservice to anyone looking at it, and I for one wouldn’t come back to your site.
Forum: Fixing WordPress
In reply to: Server Error 500 HelpThe site is working fine for me.
To replace the file, use your cPanel’s file manager or an FTP program to replace the function.php file you changed with a fresh copy (download a copy of the theme to your PC and unsip it to get a fresh copy).
Forum: Fixing WordPress
In reply to: Installation – Add New1) are you on a self hosted account?
2) is your user an ADMIN?Only admin’s can change the theme.
Forum: Fixing WordPress
In reply to: Warning: function not found or invalidWhen did this start happening?
What have you recently changed?
Done any updates recently?Try temporary swapping to the twenty-fifteen theme and see is you get the error. If you don’t then it is probably an issue with the theme.
Forum: Plugins
In reply to: [My Custom CSS PHP & ADS] doesn't work if situ using HTTPSExcellent! that works great! just sent you a tip.
Forum: Fixing WordPress
In reply to: Want to protect my WP admin but getting errorif you are using – Allow from My ip which i am using – and you go to your friend’s house and try to login, it will fail since your IP address will be different. You will have to change teh IP to match the one you are using.
Forum: Fixing WordPress
In reply to: Tables not Mobile Friendlythe theme you are using is a premium theme so you should ask for support from the theme author.
Forum: Fixing WordPress
In reply to: Centre aligning the main menu.you might want to post this in the themes support forum https://wordpress.org/support/theme/onetone
What is the $$ value they place on having this ability? i.e. do they want it if it is going to cost them $500.
One idea would be to use a custom field on the page – say you call it ‘which text to show A/B’ then they could enter the value A or B. Then in the themes page.php you could test to see if the field was there and if so, is it A or B and display that text.
Of course, each time the theme is updated this will have to be redone costing them more $$ which is why I ask how much are they willing to spend.
Another idea would be to create two page templates with the text hard coded in it and they could select the one they wanted.
or you could code a plugin to use a shortcode
or experiment with an existing plugin (takes time and time = $$ – use wordpress plugin add text on page’ in google)
Forum: Fixing WordPress
In reply to: My pages don't work :(You have a caching plugin active – you probably added the page and it wasn’t avaliable via preview.
disable the caching plugin whil developing the site.
Forum: Fixing WordPress
In reply to: How to stop video from automatically playinga little google searching cmes up with a possible solution. try changing
<param name="flashVars" value="videoId=4557954092001&playerID=1504921081001&playerKey=AQ~~,AAABXlLLzpE~,9Y5-AEi1-q4pxQjqy1MQgGw2RVurnKTr&domain=embed&dynamicStreaming=true" />
to
<param name="flashVars" value="videoId=4557954092001&playerID=1504921081001&playerKey=AQ~~,AAABXlLLzpE~,9Y5-AEi1-q4pxQjqy1MQgGw2RVurnKTr&domain=embed&dynamicStreaming=true&autoPlay=false" />Forum: Fixing WordPress
In reply to: What is wrong with my code for {prefix}_tablename?I beleive you need to use $prefix
Forum: Fixing WordPress
In reply to: Site logo URL change not working on FirefoxThe sites look the same in FireFox and Chrome when I look at them. Where do you see the url you posted?
Also remember to disable your caching plugin and clear the cache when making changes so you can see them immediately.
Forum: Fixing WordPress
In reply to: Couldn't go to Dashboard after loginwhat happens if you disable the plugins 9google wordpress how to disable plugins)
Forum: Fixing WordPress
In reply to: WordPress in directory (URL's not working)1) the main site shows just a place holder
2) remember that putting a site inside the root of another site can cause issues with permalink since all .htaccess files are processed from the lowest folder to the highest folder fithe the higher level folder taking precidence.Why not just create a subdomain? if your main site is my domain.com and you need a test site call it test.mydomain.com – both pointing to seperate root folders to avoid confusion.