Fredber
Forum Replies Created
-
Forum: Plugins
In reply to: eCommerce Checkout redirects and broken linksNevermind, I found the error.
I had changed the url of the products page to “products” instead of the original “product-page” so the built-in links in ecommerce were unable to find the new url. I simply changed the page url back to the orginal name, and it all works fine.Forum: Themes and Templates
In reply to: Change wp-admin file in parent theme or copy to child theme?I usually do a google search on all changes I want to do, and surprisingly the best I could find (I must have been sloppy) was the wp-admin solution. ??
Perfect plugin. Love it!
Thanks for that!Frederick
Forum: Themes and Templates
In reply to: Change wp-admin file in parent theme or copy to child theme?I see what you mean.
I was thinking of making the following change which I have copypasted from a thread I found. (about disabling dashboard for lowlevel users)Open ‘menu.php’ under wp-admin.php.
The very first line of code is$menu[0] = array(__(‘Dashboard’), ‘read’, ‘index.php’);
The 2nd argument is the user permission – ‘read’ permission has default registered user.
Change ‘read’ to other user level such as ‘edit_users’ if you want make Dashboard only visible to Admin privilege.$menu[0] = array(__(‘Dashboard’), ‘edit_users’, ‘index.php’);
Now default registered users only have one option – Profile.
Is this a bad idea?
Forum: Themes and Templates
In reply to: My second Page looks different from my first.Thanks! ??
Sorry for reviving this, but since this is one of the chief problems with the plugin, Im sure you can understand me.
I have the exact same problem as the orginal poster, the registration button does not show.
Could you give me a quick list of possible reasons?I have checked the settings – general.
But I cant see a checkbox in the widget that will enable registration.
(the two first suggestions from https://netweblogic.com/wordpress/plugins/login-with-ajax/)Frederick
https://www.warhammernorge.comForum: Themes and Templates
In reply to: My second Page looks different from my first.What I did was put the following into style.css
/*Hide Site Title start*/
#header h1 { display:none }
/*Hide Site Title end*/Should I remove it from style.css and put it into header.php instead?
Frederick
Forum: Themes and Templates
In reply to: My second Page looks different from my first.The site is https://www.warhammernorge.com
Im using a Child Theme of twentyten.
Header.php, page.php, functions.php and style.css have their new folders in the child theme.Forum: Themes and Templates
In reply to: Local HTML in Page files – conflicts with php?Thanks! ??
Forum: Themes and Templates
In reply to: Started with Child ThemeOkey, so when I put a style.php file in my child theme, WP no longer looks for data in my parent theme’s style.php file?
My orginal question was wether I could have some data in my Child style.php file, and some data in my Parent style.php file, and they somehow worked together.
Frederick
Forum: Themes and Templates
In reply to: Started with Child ThemeThanks.
When you want to modify a php file from the parent theme, put that modified copy into your child theme directory. No need to copy the files you have not modified.
But do I copy the entire file, and edit the changes I want among all the other content,
or make a blank file with just the small changes I want? (and it finds all the other content from the file in the parent theme)Frederick
Forum: Fixing WordPress
In reply to: Does page name have to show as a headline?Im using Twenty Eleven 1.2.
My site is currently hidden by the Site Offline or Coming Soon plugin.What am I looking for in the script? header, title or something similar?
Frederick
Forum: Fixing WordPress
In reply to: How to edit the front page itself?Thanks! ??
Forum: Plugins
In reply to: site loginCheck out the Ajax login plugin and see if it fits your needs?