vtxyzzy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Typoed somewhere on membeformlogicPlease describe the actual problem so we know what to look for.
Forum: Fixing WordPress
In reply to: Hide Dashboard OptionI have not used it, but the Admin Menu Editor plugin sounds like it might work.
Forum: Fixing WordPress
In reply to: copy wp installationWhen you move a site, you must replace the old URLs and paths with the new ones. Some of these are stored in the database in ‘serialized’ form where the string length is stored along with the string. You must use special tools to search and replace the old values with the new ones.
If you replace an old URL with a new one of a different length, it will break the serialization, causing many different problems.
If the old site is still available, you can use the steps shown in this article to copy the site: https://wordpress.mcdspot.com/2012/08/22/migrating-a-wordpress-site-step-by-step/
If the old site is not available, and you still have a copy of the database from that site, you should be able to use this tool to make the changes: https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
Forum: Fixing WordPress
In reply to: Problem while migrating website to bluehostHow did you migrate the site?
When you move a site, you must replace the old URLs and paths with the new ones. Some of these are stored in the database in ‘serialized’ form where the string length is stored along with the string. You must use special tools to search and replace the old values with the new ones.
If you replace an old URL with a new one of a different length, it will break the serialization, causing many different problems.
If the old site is still available, you can use the steps shown in this article to copy the site: https://wordpress.mcdspot.com/2012/08/22/migrating-a-wordpress-site-step-by-step/
If the old site is not available, and you still have a copy of the database from that site, you should be able to use this tool to make the changes: https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
Forum: Fixing WordPress
In reply to: WordPress Number of tabs limitation in Main MenuThis article has a detailed explanation of the cause of the problem and some suggestions for fixes.
Forum: Fixing WordPress
In reply to: Unnecessary Space Before TablesThe TinyMCE Advanced plugin will let you add a button to the editor to create and manage tables. You should be able to use that rather than hand coding the tables.
Forum: Fixing WordPress
In reply to: How to display different content in slider?The Meteor Slides plugin will let you create a separate slideshow on each page.
Set posts_per_page to -1 for your query.
Forum: Fixing WordPress
In reply to: the_query : add 'NULL'/'NOT EXISTS' custom fieldWhat version of WP are you running? According to the Codex, there is a bug prior to 3.9 that requires a value in the meta_query in order for ‘NOT EXISTS’ to work:
(Note: Due to bug #23268, value is required for NOT EXISTS comparisons to work correctly prior to 3.9. You must supply some string for the value parameter. An empty string or NULL will NOT work. However, any other string will do the trick and will NOT show up in your SQL when using NOT EXISTS. Need inspiration? How about ‘bug #23268’.)
You might try adding a value just in case.
$args = array( 'posts_per_page' => -1, 'post_status' => 'pending', 'relation' => 'OR', array( 'meta_key' => 'status', 'meta_value' => '0' ), array( 'meta_key' => 'status', 'meta_compare' => 'NOT EXISTS', 'meta_value' => 'junk' ) );
Forum: Fixing WordPress
In reply to: How do I add a child theme for my site in a Multi-user system?The CSS should be the same whether it is inline in the Page or in another place. Perhaps the Simple Custom CSS plugin can be used instead of a child theme.
Forum: Fixing WordPress
In reply to: How do I add a child theme for my site in a Multi-user system?How are you saving the Pages? If you are copying them while in the test site and pasting them into the multisite, be sure you use Text mode in both sites.
Forum: Fixing WordPress
In reply to: How do I add a child theme for my site in a Multi-user system?All of the theme mods will have to go through Network Admin.
Can you set up a test site that is not Multisite, test the theme there, and then have it installed?
Forum: Fixing WordPress
In reply to: Searching by filenameIf you do a search on ‘wordpress search custom post type’, you will find many options to do this.
Forum: Fixing WordPress
In reply to: Moderator question – Number of favorites incorrectThanks.
Forum: Fixing WordPress
In reply to: Moving website to another server.When you move a site, you must replace the old URLs and paths with the new ones. Some of these are stored in the database in ‘serialized’ form where the string length is stored along with the string. You must use special tools to search and replace the old values with the new ones.
If you replace an old URL with a new one of a different length, it will break the serialization, causing many different problems.
If the old site is still available, you can use the steps shown in this article to copy the site: https://wordpress.mcdspot.com/2012/08/22/migrating-a-wordpress-site-step-by-step/
If the old site is not available, and you still have a copy of the database from that site, you should be able to use this tool to make the changes: https://interconnectit.com/products/search-and-replace-for-wordpress-databases/