hernanhms
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site up on server but some links direct me to my localhost?I used the plugin and the same links still redirect me to my local host, when i go to the page, it says the url is correct, but it still doesnt link me to the actual link, it always takes me to my local host links?
Forum: Plugins
In reply to: [WooCommerce] How do i delete login after logging out of "My Account" page?thank you, i merely downloaded the plugin “simple restrict.”
Forum: Fixing WordPress
In reply to: How can i change the name of "My Account" that comes with the theme?The name of the theme is Flatsome
Forum: Themes and Templates
In reply to: [Cubic] help!I’m not exactly sure how this plugin works but i was looking around cause i need to learn the redirect urls and stuff but here check it out.
https://www.ads-software.com/plugins/quick-pagepost-redirect-plugin/
Forum: Themes and Templates
In reply to: [Cubic] help!I’m not sure, i’m kinda new to but i haven’t got to the products and stuff yet. But im pretty sure it’s something with url’s.
Forum: Themes and Templates
In reply to: [Cubic] help!The menus on the side are called sidebars, you can just search up sidebar tutorials. When you download a theme it only comes with certain sidebars, to add new ones search up instruction on custom sidebars, or custom widget area.
Forum: Themes and Templates
In reply to: [Cubic] help!It could mean the you don’t have the product set up. When it takes you to the oops page it means you don’t have that url with any of the pages.
Forum: Plugins
In reply to: [Nav Menu Roles] Please help me, i don't understand the FAQ?I figured out what i was doing wrong, the line 65 was the line i needed to replace with
add_filter( ‘wp_edit_nav_menu_walker’, ‘sample_edit_nav_menu_walker’);
function sample_edit_nav_menu_walker( $walker ) {
return ‘Walker_Nav_Menu_Edit_Roles’; // this is the class name
}the thing is, i wasn’t changing the name of the sample to my themes name, the only thing im not sure of if this will mess up anything in my theme since i’m replacing the nav menu walker with something new, cause I’ve tried adding both at once and it doesn’t work. But i hope it won’t, thanks a lot, for the support, great plugin.
thank you, really appreciate it.
Forum: Fixing WordPress
In reply to: New widget area registers but does not show on site?I figured it out, the problem was i was adding the call to action to display the widget.
<?php
if (! function_exists ( ‘dynamic_sidebar’ ) || ! dynamic_sidebar ( ‘Name of widget’ )) :
endif;?>