Ripple Web Design
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Membership] login prompt twiceOkay, I figured it out. Not sure why, but the post is still protected when I go through the WP Members > Membership Levels tab in the dashboard, and I go to Page and Post Protection, remove check in the box to protect document under “general protection” and do the same under “guest membership”.
However, when I edit the individual post and uncheck “protect document” it works. I think this is a bug. Unless I have not followed the directions properly. So I will continue to make selected posts unprotected by opening individual posts to do so.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Move Meta Data under Post TitleDoes anyone know how to add the date under the post title?
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Move Meta Data under Post TitleI did make some progress by doing the following. Now my page (https://www.uncabeceo.com/4169-2/) looks a little better but the sidebar is gone. First I needed to make page content to include sidebar space:
step 1: make page template no sidebar (remove sidebar only – not bottom sidebar) and content-part for template. (This removes the sidebar but I will still have to figure out how to add the date under the title.)
step 2: add this css to stylesheet to make primary content width: 100% (it will be 1224 in my case) I think I have to do something with this still as my home page now extends to cover the sidebar on the right. I think I just need to change the width to 928 which is the width of my header).
add to style sheet (from a@divjotsingh_440 here: https://www.ads-software.com/support/topic/how-to-make-template-full-width-remove-sidebar/):
#primary { width: 100% !important; }
step 2: add custom classes to functions php to enable the no sidebar page template (mor10 from here: https://gist.github.com/mor10/68a5235ff24cac23442d8ae20e2c1d21 see below)
add to functions.php:
————————————————————————/** * Adds custom classes to the array of body classes. * * @param array $classes Classes for the body element. * @return array (Maybe) filtered body classes. */ function wpcampus_body_classes( $classes ) { // Adds a class of no-sidebar to custom no-sidebar page template. if ( is_page_template('page-no-sidebar.php') ) { $classes[] = 'no-sidebar'; } return $classes; } add_filter( 'body_class', 'wpcampus_body_classes' );
- This reply was modified 7 years, 1 month ago by Ripple Web Design.
- This reply was modified 7 years, 1 month ago by Ripple Web Design.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Move Meta Data under Post TitleThanks for your reply @niteshraghu. I tried the code you suggested. the first part did remove the post meta. The problem is that I still need the date – under the title.
The second part of your code moved everything to the right and covered the sidebar. So I changed it to float left but that did not work either.
I am interested in a solution to this problem as well!
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Add menu to headerAll good now.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Add menu to headerThanks for your reply nahtee! I used this css and it worked:
‘#site-header-menu {
margin-left: auto;
margin-right: auto;
}’Of course, after that I changed my mind and moved it back to the left beside the logo. To do that I used this css:
‘#site-header-menu {
background-color: #329998 !important;
margin-left: 10px;
margin-bottom: 4px;
font-size: 18px;
border-bottom: 2 px solid #ffffff;
}’Forum: Themes and Templates
In reply to: [Twenty Sixteen] Add menu to headerOkay, I managed to:
-change the background colour of the site-header-main area,
-add a soliloquy slider (thanks to Barbi Atkinson at Soliloquy),
-and move the menu above that.I have pasted my header.php here. Hopefully this is helpful. https://pastebin.com/hYG77gRM
Now I am trying to centre the nav menu within the site-header-main space.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] month takes two clicks to changeThis issue seems to be corrected now with the most recent version. Yes!
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Erroneous Month Navigation Button LabelI have the correct month on my current month button, but the next month button has always required two clicks to change the calendar to view the next month. I would also be interested in hearing a solution for this issue.
Forum: Fixing WordPress
In reply to: 2016 template, too much space around headerSteve, if you could post the css for the media queries, I would appreciate it. Your link takes me to a 401 error page.
I have the same issue as Kb58. I can get the spacing correct for the screen I am using, but it then provides way too much white space for any smaller device screen and not enough (overlaps the header) on wider screens.
Many thanks!
- This reply was modified 7 years, 10 months ago by Ripple Web Design.
- This reply was modified 7 years, 10 months ago by Ripple Web Design.
Not sure why, but this problem has disappeared. Perhaps one of the updates fixed it?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] The calendar appears 2 times in the pageThanks Benjamin,
When I updated to WordPress 4.7 the fact that I had designated my home page as the default calendar page in the settings and added a shortcode resulted in a duplication (two calendars on one page) with this version. Makes sense but strangely it was not an issue before. Now I only see one calendar. Thanks!
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] The calendar appears 2 times in the pageI have the same problem: https://yvrtango.com/
I am using the twenty-twelve theme so it should not be a theme incompatibility issue. It has worked for 3 years and now I have two calendars appearing on the same home (front) page. This is a static page.
I am having the same issue: https://yvrtango.com/.
- This reply was modified 7 years, 11 months ago by Ripple Web Design.