juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Headers already sent problemYes you have been hacked. go to
https://sitecheck.sucuri.net/results/dynamickw.com and see what it is showingForum: Fixing WordPress
In reply to: Problem with WoocommerceIt looks like you are using the ‘Bearded’ theme, which – while a free theme – is not part of the wordpress repository.
I am installed firebug but unable to resolve, please provide some code snippet
While I could ‘give’ you teh code, Ichoose to guide you to the solution so you will learn how to solve your problems in the future.
did you try using the code examiner? What issue did you have?
Once you run FireBug, use the second icon from the left – it looks like a rectangle with an arrow pointed in it – and click on teh element you are interested in. This should show you the HTML it uses and on the right side, the CSS applied to it.
If you look at that element you should see a class assigned to it and to make the CSS selector more specific, you should look for something in a parent element that is unique (hint: like a post id).
With all that you should be able to construct a CSS selector and rule to hide the element.
Forum: Fixing WordPress
In reply to: WordPress not working over wifiNothing to do with wifi, I have a hard wired internet cnnection and I get the same error:
Fatal error: Call to undefined function ff_wp_kses() in /home/nf032/public_html/wp-content/themes/nation/install/init.php on line 97
since it is saying the function is undefined, I suspect that when you are doing the theme install, it is timing out.
Try this, download the theme zip to your computer and then try installing it within WP and click ‘Add New’ then select the upload button.
If this doesn’t work, you might want to check with the host and see if they see the install timing out
Forum: Fixing WordPress
In reply to: Headers already sent problemSorry to say but your site has been hacked. Take a deep breath and start working thru the resourses at this link https://codex.wordpress.org/FAQ_My_site_was_hacked
Forum: Fixing WordPress
In reply to: "Fatal error" problem to install Pluginsthe theme you are using is a premimum theme which I can’t help you with. however if you are timig out then you need to ask your host if they will bump up your execution time.
you could also try manually uploading the plugin using FTP, but you might want to report this to the theme author since it is requiring the plugin.
Forum: Fixing WordPress
In reply to: Added plugin, WP now crashing! Memory errorIf you can get into the backend, just disable the plugin.
If you can NOT get into the backend, use FTP or your cPanel’s file manager and go to the wp-content/plugins folder and delete the folder for that plugin.Forum: Fixing WordPress
In reply to: Problem with WoocommerceWell you could add some css to hide that specific price – but if you put it in style.css the next time you update the theme it will disappear, so you should make a child theme.
use a code editor like FireBug in FireFoox and you can examine the element and then create a CSS selector spefic to that element and use the ‘display: none;’ rule to hide it.
Forum: Fixing WordPress
In reply to: WordPress not working over wifiNow you ave me confused. From your original post I was lead to understand that WordPress doesn’t work – i.e. you can’t get into the front end, but only when accessing it over wifi. So please answer the following questions
1) does the front end of this site work using the twenty-fifteen theme?
2) are the two sites you are checking on the same server?
3) did you upload teh theme to the other site via WP or FTP?
4) Try uploading the Atahualpa’ theme from the WP repository via WP on the site having the problem. Did it upload?Forum: Fixing WordPress
In reply to: how to remove code on webpageI would have to guess that someone put some debugging code in and it wasn’t taken out.
can you explain what you mean by ‘I am wp movie library’? how do you use it? with a plugin? if so what plugin? (and that plugin is probably the culprit)
Forum: Fixing WordPress
In reply to: Can't add a new userdebugging 101 – when something doesn’t work, disable ALL your plugins to see it one is causing teh issue.
Forum: Fixing WordPress
In reply to: var_dump($query)just put it in
var_dump($query);btw, it looks like you have an extra ‘;’ on the last line.
Forum: Fixing WordPress
In reply to: URLs unreachableDisable ALL plugins and see how many processes requests you get. Then add them back in to find the culprit(s)
if you are serving lots of AD’s and grabbing info from other sites, that is probably the cause.
Forum: Fixing WordPress
In reply to: Static page Blog page as a homepageDepending on your theme, it might be an option.
or
You might want to look for a plugin like List Category Posts’
or
You could build a page template to do this – you will need to make a child theme too.take your pick
Forum: Fixing WordPress
In reply to: Problem with WoocommerceYou should probably ask this over at woothemes support
Forum: Fixing WordPress
In reply to: I don't want WP asking me how I amyou sure it isn’t caused by a plugin? All I see on the admin bar in WP 4.4 is ‘Howdy, myname’
as a matter of fact, I just did a search thru all teh WP files for ‘How are you’ and it doesn’t exist.
Try swapping to a different theme to see if it is theme related.