f10mark
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Question about maximum words or page length.The post_content column is a Longtext data type which is pretty darn long here’s a definition from the MySQL reference site:
A TEXT column with a maximum length of 4,294,967,295 or 4GB (232 – 1) characters. The effective maximum length is less if the value contains multibyte characters. The effective maximum length of LONGTEXT columns also depends on the configured maximum packet size in the client/server protocol and available memory. Each LONGTEXT value is stored using a 4-byte length prefix that indicates the number of bytes in the value.
As @chrishajer says what happens when you try to add more content?
Forum: Fixing WordPress
In reply to: 404 on LoginSo what is the url to the directory that contains your WordPress install?
If it’s something like: http://www.sitename.com/directory, then the url would be: http://www.sitename.com/directory/wp-login.php
Forum: Fixing WordPress
In reply to: Woocommerce product with combinations of 2 different colors ..To add to contentiskey’s advice there’s also the page on the Woo documentation about product variations
Forum: Fixing WordPress
In reply to: get_page deprecated, what is it's replacement?From the top of the get_page codex page 😀
This function has been deprecated. That means it has been replaced by a new function or is no longer supported, and may be removed from future versions. All code that uses this function should be converted to use its replacement if one exists. See also wp-includes/deprecated.php. Use get_post instead.
Forum: Themes and Templates
In reply to: [WooCommerce] Disable "Ship to a different address"You should be able to disable this in your Woocommerce settings. Woocommerce > Settings > Shipping there’s a checkbox to enforce shipping to billing address only.
Forum: Themes and Templates
In reply to: how to add more products per page?Hi
I see you’re using woocommerce, which by default inherits the posts per page setting from WordPress.
You will likely need to change the value on the Settings > Reading screen to 30 posts per page from your admin dashboard.