Bloke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Themes using other themes as a childIf you install Blockfold theme it automatically downloads the Kadence theme. Can anyone tell how this is done? The child theme is not Kadence-child.
Forum: Plugins
In reply to: [WooCommerce] Sort is not working on page load for just one categoryI found the plugin that was causing the conflict. post-types-order
Forum: Plugins
In reply to: [WooCommerce] Sort is not working on page load for just one categoryThis is the custom function I have been using. I have it on other sites. So its strange just the one category does not load by default by date order. We also changed the title to “popularity” but really its date order.
function woocommerce_product_sort( $woocommerce_sort_orderby ) { $woocommerce_sort_orderby = str_replace("Default sorting", "Product Sorting", $woocommerce_sort_orderby); return $woocommerce_sort_orderby; } add_filter( 'woocommerce_catalog_orderby', 'woocommerce_product_sort' ); add_filter( 'woocommerce_default_catalog_orderby_options', 'woocommerce_product_sort' ); // Modify the default WooCommerce orderby dropdown //https://www.speakinginbytes.com/2016/05/customize-woocommerce-sorting-dropdown/ // Options: menu_order, popularity, rating, date, price, price-desc // In this example I'm changing the default "Sort by newness" to "Sort by date: newest to oldest" function patricks_woocommerce_catalog_orderby( $orderby ) { $orderby_value = isset( $_GET['orderby'] ) ? wc_clean( $_GET['orderby'] ) : apply_filters( 'woocommerce_default_catalog_orderby', get_option( 'woocommerce_default_catalog_orderby' ) ); $orderby["date"] = __('Sort by Popularity', 'woocommerce'); unset($orderby["price"]); unset($orderby["price-desc"]); unset($orderby["rating"]); unset($orderby["popularity"]); return $orderby; } add_filter( "woocommerce_catalog_orderby", "patricks_woocommerce_catalog_orderby", 20 );Forum: Localhost Installs
In reply to: Local WordPress and VS code live serverOk I think I understand. I can edit and debug the code, JavaScript, CSS and the HTML and save. Then open my local server to view it on my WAMP server.
So the live server with VS code is really for developing React type projects?
Forum: Fixing WordPress
In reply to: Themes using other themes as a childIf anyone wants to look at this theme its here https://wordpress.org/themes/blockfold/ I contacted the developer. I have never seen a theme that required another theme but not set up as a traditional child theme.
Forum: Fixing WordPress
In reply to: Themes using other themes as a childI don’t understand how these two themes work together. The child one is not set up like a regular child theme. But it requires the other to be installed.
Forum: Fixing WordPress
In reply to: Themes using other themes as a childSeems like it works if I make a child of that theme that based on the other theme. I tried changing the footer to test it. So it seems you just have to have Theme 1 and Theme 2 installed and you make a child of Theme 2.
I was able to correct it. I knew it must be something simple because I have 3 other sites with the same set up. I downloaded the htaccess file and edited it, reviewed the errors, used another theme, cleared the active plugins in the database to get into the admin panel. Then used a search and replace plugin and its ok now.
I was able to correct it. I knew it must be something simple because I have 3 other sites with the same set up. I downloaded the htaccess file and edited it, reviewed the errors, used another theme, cleared the active plugins in the database to get into the admin panel. Then used a search and replace plugin and its ok now.
I don’t have anything in wp-content/cache/
Also now I have changed the theme in the database and there is no change.- This reply was modified 4 years, 2 months ago by Bloke.
Forum: Plugins
In reply to: [Mixed Media Gallery Blocks] change the permalinkI was able to go into the database under ‘wp_posts’ and edit ‘post_name’
Forum: Plugins
In reply to: [WordPress Slider Block Gutenslider] Remove right marginThank you that worked.
- This reply was modified 4 years, 4 months ago by Bloke.
Thanks. I decided to use a plugin specifically for animating blocks.
- This reply was modified 4 years, 5 months ago by Bloke.
Forum: Fixing WordPress
In reply to: ampersand in URL in Gutenberg ColumnParagraph block
Forum: Plugins
In reply to: [Max Mega Menu] Menu not be pushing the content downThank you that solved it.