juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Menu inside Page not visible on page 2What is teh code you used to create the menu?
Where did you put the code to do that?
Did you add code to handle the case when there is pagination?Forum: Fixing WordPress
In reply to: nav-menu.php hijackedYour site is most likely hacked.
run a scuri scan: https://sitecheck.sucuri.net
You need to start working your way through these resources:
https://codex.wordpress.org/FAQ_My_site_was_hacked
https://wordpress.org/support/topic/268083#post-1065779
http://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/
http://ottopress.com/2009/hacked-wordpress-backdoors/
Additional Resources:http://sitecheck.sucuri.net/scanner/
http://www.unmaskparasites.com/
http://blog.sucuri.net/2012/03/wordpress-understanding-its-true-vulnerability.htmlForum: Fixing WordPress
In reply to: Menu inside Page not visible on page 2you might want to post htis on the woothemes support site since it will probably have something to do with the theme and maybe it’s interaction with WooCommerce.
Forum: Fixing WordPress
In reply to: Trouble after installing XILImanually remove the plugin – ie use FTP or your cPanel’s file manager and go to the wp-content/plugins folder and remove the folder xili-language.
Well it looks like the if statement is missing closing ‘}’ but that is without seeing the entire file and that might not be the issue.
Not having access to your cutom theme, I can’t tell you what is happening.
Was this theme working previously? if so what changed to cause the original issue?
cam you set the permalinks back to defautl then go do 2 and 3 again and copy and past the url that shows up.
Forum: Fixing WordPress
In reply to: Not sure how to fix thisHave you looked at the theme options for a slider option?
Those lines should noe be in the wp-config.php. They are setting automatic updating. Edit your wp-config.php and comment them out (put two slashes at the start of the line).
see https://codex.wordpress.org/Configuring_Automatic_Background_Updates
Never mind, you don’t need a function.php.
1) Is that all that is in the css.style file in the child theme?
2) check the file for any non-printable characters – i.e. if you typed that in a word processor, it could give you issues.And just to make sure, that file is called ‘style’css’ correct?
How to Create a Child Theme
Child Theme directory structure
A child theme consists of at least one directory (the child theme directory) and two files (style.css and functions.php), which you will need to create:The child theme directory
style.css
functions.phpFrom https://codex.wordpress.org/Child_Themes
Do you have a function.php file?
Forum: Fixing WordPress
In reply to: Layout of site content shiftedI tried taking out the “Nativity Nights” post, and it didn’t fix the problem.
of course not, the other posts are like that to. Try changing the posts per page (dashboard->settings->reading) to one
All of my images in the left hand column are 700px wide, and I have added them over time. Why would everything shift now?
Because something changed. Do you have automatic updates enabled? or have you updated the theme or and plugins or WordPress?
Didi you add anything new like a new plugin?
Oh yes, have you tried disabling ALL plugins (at the same time) to see if the issue goes away?
Please try a couple things
1) go back and set the permalinks to the default and leave them there (for now)
2) go to the dashboard->posts->categories and for the ‘Lessons on Training’ category, click the ‘view’ link
— does it take you to a page with the posts?
3) test the sidebar link to the category
— does it take you to a page with the posts?
4) set the links back to what you have and test (2) and (2) again..do eithor workForum: Fixing WordPress
In reply to: Connecting MySQL with php code in WordPressIf you are doing this from with in WP you need to use the WP API and WP will hndle the calls. Here is an example I used (in a plugin I was using to track milage I walked on a virtual Applicaian Trail hike) to insert a row in a table I created in the WP database
//Submits data to the MYSQL database table wp_at_hike if (isset($_POST['Submit'])) { global $wpdb, $current_user; get_currentuserinfo(); $trail_name = $current_user->display_name; $year = mysql_real_escape_string($_POST['yeardata']); $month = mysql_real_escape_string($_POST['monthdata']); $day = mysql_real_escape_string($_POST['daydata']); $time = 0; $distance = mysql_real_escape_string($_POST['distancedata']); $sql = "INSERT INTO wp_at_hike (trail_name,year,month,day,time,distance) VALUES ('$trail_name','$year','$month','$day','$time','$distance')"; if ($wpdb->query($sql) === FALSE) { echo "Error!"; } else { echo "Your entry was successfully added to your Trail Log."; } };please go to dashboard->posts->categories and verify that you have posts associated with the category ‘Lessons on Training’