jpurdy647
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Find sidebar ID to unregister?Looked into the
register_sidebarfunction you mentioned and found the$wp_registered_sidebarsvariable.Was able to print out the list of sidebars which had been registered with the code below, including name and ID. That was all I needed to unregister the sidebar.
function print_sidebars(){ global $wp_registered_sidebars; echo("Sidebars:"); print_r($wp_registered_sidebars); } add_action ('wp_footer', 'print_sidebars',1);Thanks for all your help!
Forum: Fixing WordPress
In reply to: Change Font in Checkout PageThis is what your text view should look like. Text view is in the top right of the image and editor:
https://i.imgur.com/1QwGBGc.pngForum: Fixing WordPress
In reply to: Change Font in Checkout PageHave you made any changes in the code to WooCommerce? The code tags in your HTML are appearing within the checkout object, like something internal was modified.
One option could be to try deleting the wocommerce plugin folder, then reuploading the woocommerce plugin folder(Either the latest version, or 2.4.13, I rolled back to 2.4.13 due to glitches)
If there was any code messed up that would fix it, and it shouldn’t cause the loss of any of your products. That is all stored seperatelyForum: Plugins
In reply to: [Plugin: Frontier] Plugin broke my edit page button?Nevermind. Sorry for the post. My fault, my page had cached or something..
Problem solved, please close this thread