nirgalo
Forum Replies Created
-
Forum: Plugins
In reply to: [bbp profile information] Doesn't work for me, BP 2.5.3Thanks for the quick reply. New one didn’t work either, but there is already a way to add new profile fields on my site (looks like a built-in feature of BP), so I used this and it is working fine. What is your plugin adding to this?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] upcoming event shortcode issuesno all-day events and no recurring events, only single, simple events. Not all events were from the same author.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] upcoming event shortcode issues[my_calendar_upcoming before=”1″ after=”4″ type=”event” fallback=”no event” template=”some template” order=”asc” show_today=”yes” skip=”0″]
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Replacing Close iconin case it helps someone else, my workaround is as follows:
#jd-calendar .mc-close img { display:none; } #jd-calendar a.mc-close { background:url("close-button-replacement.png"); margin:8px; }Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Two close buttonstwo close buttons is far from being standard in UX guidelines 🙂
Would be nice if this was configurable in the plugin settings.
In the meantime we can workaround this using the following CSS:#jd-calendar a.mc-close:last-child { display:none; }Forum: Plugins
In reply to: [JP Markdown] Consistent update logsah ok thanks for the clarification.
Forum: Plugins
In reply to: [JP Markdown] Consistent update logsbut why is the author bumping version number if there is no change?
FYI I have fixed the issue by enabling custom scripts, I copied over mc-grid.js and added the following:
$(".calendar-event .event-title a:first-child").prop("href","");this empties the href of the first anchor tag inside the event title which is creating conflict with the onClick event.
This also needs to be added in the override of ajax.js after loading completes in order to handle new loaded events.would someone have a suggestion to fix this issue. Problem is the structure is built inside the code so is not configurable by the user.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Two issues with imagesGreat! Thanks Joe. I could have what I wanted with the following code:
add_filter( 'mc_filter_shortcodes', 'mycal_link_image_url', 10, 2 ); function mycal_link_image_url( $e, $event ) { $url = $e['linking']; if (!empty($url)) { $post_id = url_to_postid( $url ); if ( has_post_thumbnail( $post_id ) ) { $image_url_array = wp_get_attachment_image_src( get_post_thumbnail_id( $post_id ), 'single-post-thumbnail' ); $e['link_image_url'] = $image_url_array[0]; } } return $e; }If you could add this {link_image_url} to the next release that would be great, I am sure this would be useful to some.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Two issues with images1. I have the medium size in my thumbnails format. I am using the URL in a template as the following : <div class=”overlay-image” style=”background-image:url({image_url});”>
At rendering time the url is empty even though the event has an image2. {image_url} is actually a workaround for me, because I requires me to assign an image to the event. Ideally I want to use the featured image of the linked post, but could not do this since {link_image} is returning a formatted anchor so doesn’t fit inside “background-image:url()”. Could you please elaborate or refer me to an article describing how I can achieve this using the My Calendar template API? Thanks.
Forum: Themes and Templates
In reply to: [Ward] Make top menu scroll on mobilesfix (add this in CSS of you child theme or style.css of the main theme):
@media (max-width: 480px) { .navbar-fixed-top { position: absolute; } }Forum: Plugins
In reply to: [Search Everything] Not searching into BuddyPress groups or BBPress postsHi Petra. Well I just looked into my DB and saw the posts made into groups and set up into the wp_activity_table (BuddyPress 2.x), column “content”. You can tell by the “component” column whether this is a group post or other. There should be no problem with searching in there.
Forum: Themes and Templates
In reply to: [Ward] 1.0.6 update broke my siteI will check another time, for now I have reverted to 1.0.5. I will need to set up a local copy of the site to test this.
Forum: Plugins
In reply to: [User Meta Manager] Meta not added to new userProblem is fixed in 3.3.7, thanks!