campanula
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Themes and Templates
In reply to: [WPstart] Remove Author Bio in postsI have:
.meta-author, .meta-author-prep, .meta-author.link { display: none; }
And my child theme works… So maybe it’s the extra sections which are still appearing…
Hope that helps!
CampanulaI’m having the same problem. For me, the problem is only the date following a day with a full day event – all other dates are fine. Code snippet via firebug:
<tr> <td id="mini-2014-10-27" class="mon future-day has-events author1 mcat_general day-with-date"> <a class="mc-date trigger" href="#">27</a> <div id="date-2014-10-27" class="calendar-events" style="display: none;"> <div id="mc_2-27-mini" class="mini-event mc_general vevent"> <h3 id="mc_2-27-mini-title" class="event-title summary"> <img class="category-icon" style="background:#ffffcc" alt="Category: General" src="https://192.168.1.10/School/wp-content/plugins/my-calendar/images/icons/event.png"> Start of half term </h3> <div id="mc_2-27-mini-details" class="details" aria-labelledby="mc_2-27-mini-title" role="dialog"> <a class="mc-toggle mc-close close" href="#mc_2-27-mini"> <img alt="Close" src="https://192.168.1.10/School/wp-content/plugins/my-calendar/images/event-close.png"> </a> <div class="time-block"> <p> <span class="mc-event-date">27 October, 2014</span> <span class="event-time"> <abbr title="Not Applicable">N/A</abbr> </span> </p> </div> <div class="location"></div> <div class="longdesc"></div> <div class="sharing"></div> <div class="mc_edit_links"> <p> <a class="edit" href="https://192.168.1.10/School/wp-admin/admin.php?page=my-calendar&mode=edit&event_id=2&ref=http%3A%2F%2F192.168.1.10%2FSchool%2Fnews%2Fdiary">Edit</a> ? <a class="delete" href="https://192.168.1.10/School/wp-admin/admin.php?page=my-calendar-manage&mode=delete&event_id=2&ref=http%3A%2F%2F192.168.1.10%2FSchool%2Fnews%2Fdiary">Delete</a> </p> </div> <a class="mc-toggle mc-close close" href="#mc_2-27-mini"> <img alt="Close" src="https://192.168.1.10/School/wp-content/plugins/my-calendar/images/event-close.png"> </a> </div> </div> </div> </td> <td id="mini-2014-10-28" class="tue future-day has-events day-with-date"> <span class="mc-date " style="display: none;">28</span> </td>
Forum: Themes and Templates
In reply to: [Universal] child theme function for font overrideHave now managed to override this using the following:
function enqueue_child_theme_styles() { wp_register_style('ABeeZee', 'https://fonts.googleapis.com/css?family=ABeeZee:400'); wp_register_style('universal-style', get_template_directory_uri().'/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('universal-style', 'dashicons', 'ABeeZee' ) ); } add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
Forum: Plugins
In reply to: [BP Group Documents] Notice: Undefined indexI also get this error, and another:
Notice: Trying to get property of non-object in .../wp-content/plugins/bp-group-documents/include/notifications.php on line 131
Again, it’s on a test site, and the uploads do work (at least after I sorted permissions on the install).
Unfortunately, the plugin does not appear to allow what I want it to do anyway, which is to be able to download, edit then reupload the updated file.
Viewing 4 replies - 1 through 4 (of 4 total)