bendthelimits
Forum Replies Created
-
How secure is your plugin then to brute force attacks?
Forum: Plugins
In reply to: [My Private Site] Register email wrong redirectThanks for your quick reply!!
I’m sorry I don’t get the expected result…
This is the scenario:
Plugin setting: Return to same urlMenu item on the site with this URL: http://albertobrusa.com/welcome
The plugin redirects the unregistered user to the wp-login page, and on that page the user has to click on the register link (standard wordpress login page). This sends the user to http://albertobrusa.com/wp-login.php?action=register
The e-mail sent by wp contains the following link: http://albertobrusa.com/wp-login.php?redirect_to=http%3A%2F%2Falbertobrusa.com%2Fwp-login.php%3Faction%3Dregister
which sends the user away from the welcome page…Forum: Themes and Templates
In reply to: [Customizr] Full-width in page?Absolutely!
It was not my intention to have a full-width Front page from this template.
It is just intended to get rid of the margins in a secondary page (the margins seem to come from the containers.)I’ve tested with and without the slider and seems to work fine…
Forum: Themes and Templates
In reply to: [Customizr] Full-width in page?I’ve taken a different approach:
I’ve created a new page template copying and editing the original.
Placed it in the child-theme folder.
Added CSS code to remove the title & icon and that’s it!Now i can use this page template for any sort of element filling the screen.
If anyone is interested:New page template (fullwidthempty-page.php)
<?php /* Template Name: Full Width Empty */ ?> <?php do_action( '__before_main_wrapper' ); ##hook of the header with get_header ?> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : ##all other cases for single and lists: post, custom post type, page, archives, search, 404 ?> <?php the_post(); ?> <?php do_action ('__before_article') ?> <article <?php tc__f('__article_selectors') ?>> <?php do_action( '__loop' ); ?> </article> <?php do_action ('__after_article') ?> <?php endwhile; ?> <?php endif; ##end if have posts ?> <?php do_action( '__after_main_wrapper' );##hook of the footer with get_get_footer ?>CSS code to hide title and icon:
/* Remove everywhere page icon AND title on static pages */ .page .entry-header h1 {display: none; }Will be updating pages with this kind of layout at http://www.bendthelimits.com
Best!
Forum: Themes and Templates
In reply to: [Customizr] Full-width in page?Yes.
The best that I have been able to accomplish so far is with the use of margin: -45px for the left and right but I believe it is not a good solution…I was hoping it would not be that complicated. Is it not that behavior of the Footer?