veuse
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Limit WidgetsYou can unregister widgets:
<?php unregister_widget( $widget_class ) ?>
https://codex.www.ads-software.com/Function_Reference/unregister_widget
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] twitter bootstrapI don’t agree with this. The best would be to make a filter for the grid, where you could add your own classes. Personally I use Foundation, and not bootstrap, and would hate to have to load both grids.
The Visual-composer pagebuilder has a filter like this, and it is really helpful.
A feature I would love to see, is the possibility to select a second breakpoint to the columns. I would also love to have an option to add visibility-classes to the columns, so I could show/hide for different screens.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Multi checkbox supportThanks for this. Very helpful.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] 'more' tag doesn't workHi guys. I seem to have found a temporary fix for this.
In black-studio-tinymce-widget.php, line 163, comment out or remove
$initArray['theme_advanced_buttons1'] = str_replace(',wp_more', '', $initArray['theme_advanced_buttons1']);
Seems to fix the issue.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] tag "more"Hi guys. I seem to have found a temporary fix for this.
In black-studio-tinymce-widget.php, line 163, comment out
$initArray['theme_advanced_buttons1'] = str_replace(',wp_more', '', $initArray['theme_advanced_buttons1']);
Seems to fix the issue.
I will do some cleanup in the DB, or try on a fresh wordpress install.
I have tried several event-plugins on this site, so I am thinking there might be some conflict.
Hi. Yes, I do have a single.php
The issue is still there when changing theme to TwentyTwelve.
Here are my settings for multisite options:
Enable global tables mode? Yes
Display global events on main blog? Yes
Link sub-site events directly to sub-site? No
Locations on main blog? YesIf I set “Display global events on main blog?” to NO, it uses single-event.php, but not when set to YES
Yes, it’s a typo. I have single-event.php. I have also tried using custom template files.
Hi
Yes, that is correct. I have also tried disabling all plugins, and checked with TwentyTwelve theme. Still not working.
I have tried using a custom template, single-events.php, and it still forces me to use page.php.
The reason this is important to me, is that I want a calendar widget on the single-posts, with access to all network events. If I choose to open single events on sub-site level, I no longer have access to events from the other sites via the calendar-widget.
Forum: Alpha/Beta/RC
In reply to: Image post-format, get id of attached imageSeems there is no built-in method for retrieving the image src, but it can be done with a preg_match:
function get_post_format_image_src($post_id){ $format_meta = get_post_format_meta($post_id); $match = array(); preg_match('/<img.*?src="([^"]+)"/s', $format_meta['image'], $match); return $match[1]; }
This will return the image src.
Forum: Alpha/Beta/RC
In reply to: Image post-format, get id of attached imageThat’s better. Thanks.
Forum: Alpha/Beta/RC
In reply to: Image post-format, get id of attached imageWhy has this thread been moved to “How-To and Troubleshooting”? This question is related to the new post-format functionality in wp 3.6
Forum: Alpha/Beta/RC
In reply to: Image post-format, get id of attached imageImage src or id…