ddlg2007
Forum Replies Created
-
Forum: Plugins
In reply to: [My Default Post Content] MultisiteSorry my mistake is ok, working.
Forum: Fixing WordPress
In reply to: How to create a multi-site with a home page for everyone?Is really dificult I know but is possible?
Forum: Fixing WordPress
In reply to: Custom Author Profile PageI dont understand exactly what you want. You can creat a page, and make it there all the change that you want. If you ant help give me a better idea or give me a link to your page to see it how is.
Forum: Plugins
In reply to: Fix code login/logout redirectThanksssssssssss like always all help me…
Forum: Installing WordPress
In reply to: Rating Wordpres login / register zero very big.GG thanks Ipstenu, I dont have sidebar, I just have 1 column on my site for all the content, for that I try to implement in my theme a login/register without change a lot my theme. Now I use the plugin SimpleModal Login customized but for call the function i edit functions.php and add this:
add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2); function add_login_logout_link($items, $args) { ob_start(); wp_loginout( $_SERVER['REQUEST_URI'] ); $loginoutlink = ob_get_contents(); ob_end_clean(); $items .= '<li>'. $loginoutlink .'</li>'; return $items; } add_filter('wp_nav_menu_items', 'add_register_link', 10, 2); function add_register_link($items, $args) { ob_start(); wp_register(''); $registerlink = ob_get_contents(); ob_end_clean(); $items .= '<li>'. $registerlink .'</li>'; return $items; }
Look it here:https://www.arrastheme.com/forums/post26137.html#p26137
I hope found a solution I’ll go crazy.
Forum: Installing WordPress
In reply to: Rating Wordpres login / register zero very big.Hi wrool, thanks for your response. I installed the plugin but I do not think that prevents user access control panel. The truth is not understood very well that I quic. IF you have a minute I’d appreciate you to look this:
https://www.arrastheme.com/forums/post26137.html#p26137
I have asked in many forums including here and no respone absolutely nothing.
This issue has become a terrible headache. My blog has 1 single column so look for ways to implement a login / register in the head, menu, or drop …
I’ve done, but I do not want users to access the control panel, only the profile that is customized by the plugin (Customize Your Community)Forum: Fixing WordPress
In reply to: Add login/register to nav menu? Help pleasePlease some one can help me? I make a new modification for redirect to the same page:
function add_login_logout_link($items, $args) { ob_start(); wp_loginout( $_SERVER['REQUEST_URI'] ); $loginoutlink = ob_get_contents(); ob_end_clean(); $items .= '<li>'. $loginoutlink .'</li>'; return $items; } add_filter('wp_nav_menu_items', 'add_register_link', 10, 2); function add_register_link($items, $args) { ob_start(); wp_register(''); $registerlink = ob_get_contents(); ob_end_clean(); $items .= '<li>'. $registerlink .'</li>'; return $items; }