cafoundationfund
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Listed events not showing in chronological orderI have the same problem. My list view is not in chronological order.
cafoundationfund.org/events/
I currently have the default to map view only. This view places the events in chronological order. I would like to remove this work around and allow visitors to choose their view preference.
Please advice.
Miguel
Forum: Plugins
In reply to: [The Events Calendar] Listed events not showing in chronological orderI have the same problem. cafund.org/events
Let me know if there is a fix.
Forum: Plugins
In reply to: [The Events Calendar] Release: The Events Calendar 4.0I got it to work by changing the permalink and flushing the server.
Forum: Plugins
In reply to: [The Events Calendar] Release: The Events Calendar 4.0https://www.cafoundationfund.org/events/community/list is also not working. I’m sure it related to the same problem.
Please advice.
Miguel
Forum: Plugins
In reply to: [The Events Calendar] Release: The Events Calendar 4.0Hi, I updated to 4.0 and lost the ability to add community listings. The plugin is installed yet the link is returning invalid. https://www.cafoundationfund.org/events/community/add.
Also, EDD tickets and Event ticket plus plugins are asking for the latest version of the events calendar to be installed.
Please advice.
Miguel
Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptIf you prefer, I can send you admin credentials. If so, provide your email address.
Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame Excerptadd_action( ‘__post_list_grid’, ‘remove_ideck_socials’);
function remove_ideck_socials(){
remove_filter(‘the_content’, ‘idsocial_sharing_on_posts’);
}did not work.
Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptSo far this has been the best option.
It removes most of the excerpts.
add_filter(‘tc_grid_display_figcaption_content’, ‘my_grid_content’);
function my_grid_content(){$text = strip_shortcodes( get_the_content(”) );
$text = str_replace(‘]]>’, ‘]]>’, $text);$excerpt_length = apply_filters( ‘excerpt_length’, 55 );
$excerpt_more = apply_filters( ‘excerpt_more’, ‘ ‘ . ‘[…]’ );
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
return sprintf(‘<div class=”tc-g-cont”>%s</div>’,
$text
);
}Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptLet me try this one too.
Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptI tried it. It leaves most of them blank with the exception of the futureboss project. Take a look.
Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptI will test it. I found this code on their site as a partial fix. Not sure if this will help you.
function js_social_buttons($post_id,$post_excerpt){
global $post;
if (use_id()) {
$social_settings = maybe_unserialize(get_option(‘idsocial_settings’));
$settings = (object) $social_settings[‘social_checks’];$hide_facebook = (isset($settings->prod_page_fb) && $settings->prod_page_fb ? 0 : 1);
$hide_twitter = (isset($settings->prod_page_twitter) && $settings->prod_page_twitter ? 0 : 1);
$hide_google = (isset($settings->prod_page_google) && $settings->prod_page_google ? 0 : 1);
$hide_pinterest = (isset($settings->prod_page_pinterest) && $settings->prod_page_pinterest ? 0 : 1);
$hide_linkedin = (isset($settings->prod_page_linkedin) && $settings->prod_page_linkedin ? 0 : 1);
}
else {Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptThe plugin is free. https://ignitiondeck.com/id/extend/ignitiondeck-social/
Or download it from my dropbox: https://www.dropbox.com/sh/uumwxsl9k9j0cux/AABVpz2VhP-SRwEookHqwCaZa?dl=0
Take a look. Let me know what you find.
Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptThe semicolon fixed the code error.
However, the excerpt problem is still there.
Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptI also use it for Facebook registration.
Forum: Themes and Templates
In reply to: [Customizr] Category Grid Pulls iFrame ExcerptThis snippet creates a syntax error. Can you check it?
Also, the plugin for sharing is IgnitionDeck Social.
When I deactivated it, the excerpt problem was fixed. What do you recommend? Find another plugin? I use it to add the share buttons to each of the crowdfunding projects.
It’s active now for you to evaluate.