* Template Redirect
* Use archive-books.php for all books and 'book-category' taxonomy archives.
* @author CCDN
* @link https://codexcafe.net
*
* @param string, default template path
* @return string, modified template path
*
*/
function be_template_redirect( $template ) {
if ( is_tax( 'book-category' ) )
$template = get_query_template( 'archive-books' );
return $template;
}
add_filter( 'template_include', 'be_template_redirect' );
DB Errors
- Uncaught Exception: DB Error: Access denied for user ” (using password: YES)
= Check credentials
PHP error
- There has been a critical error on this website.
- There has been a critical error on this website. Please check your site admin email inbox for instructions.
- Service Unavailable. The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
- Your PHP installation appears to be missing the MySQL extension which is required by WordPress.
- Learn more about troubleshooting WordPress.
Solutions
- Update wordpress
- Check PHP version and validate with installed wordpress
- Re-build PHP
Genesis Layout Filter
Below is the code to force Layout Settings:
//* Force content-sidebar layout setting add_filter( 'genesis_site_layout', '__genesis_return_content_sidebar' ); //* Force sidebar-content layout setting add_filter( 'genesis_site_layout', '__genesis_return_sidebar_content' ); //* Force content-sidebar-sidebar layout setting add_filter( 'genesis_site_layout', '__genesis_return_content_sidebar_sidebar' ); //* Force sidebar-sidebar-content layout setting add_filter( 'genesis_site_layout', '__genesis_return_sidebar_sidebar_content' ); //* Force sidebar-content-sidebar layout setting add_filter( 'genesis_site_layout', '__genesis_return_sidebar_content_sidebar' ); //* Force full-width-content layout setting add_filter( 'genesis_site_layout', '__genesis_return_full_width_content' );
WooCommerce Ecommerce Themes and Plugins
Min and Max Quantity for WooCommerce
By BeRocket
Min/Max Quantities (Paid)
Developed by WooCommerce
Define quantity rules for orders, products and variations
WooCommerce PDF Invoices & Packing Slips
By Ewout Fernhout
- « Previous Page
- 1
- 2
- 3
- 4
- 5
- 6
- …
- 18
- Next Page »