robotcake
Forum Replies Created
-
I am reading SSO is free here:
https://help.disqus.com/customer/portal/articles/684744-getting-started-with-single-sign-on
So I ma a bit confused. Can anyone clarify??
Forum: Plugins
In reply to: [Network Latest Posts] Get posts by custom taxonomyMay I also ask if for my custom post type “Project” I have a custom taxonomy called”skill” with skills like design, photography and I would like to if this version support the getting post in “design” or “photography” ?
Thank you!
I think I know why, actually not the sidebar problem but the widget in the sidebar have some problem, i am not sure if that is javascript conflit, the widget is events manager, this is the events calendar widget:
<?php /** * @author marcus * Standard events calendar widget */ class EM_Widget_Calendar extends WP_Widget { var $defaults = array(); /** constructor */ function EM_Widget_Calendar() { $this->defaults = array( 'title' => __('Calendar','dbem'), 'long_events' => 0, 'category' => 0 ); $widget_ops = array('description' => __( "Display your events in a calendar widget.", 'dbem') ); parent::WP_Widget(false, $name = __('Events Calendar','dbem'), $widget_ops); } /** @see WP_Widget::widget */ function widget($args, $instance) { $instance = array_merge($this->defaults, $instance); echo $args['before_widget']; if( !empty($instance['title']) ){ echo $args['before_title']; echo $instance['title']; echo $args['after_title']; } //Shall we show a specific month? if ( !empty($_REQUEST['calendar_day']) ) { $date = explode('-', $_REQUEST['calendar_day']); $instance['month'] = $date[1]; $instance['year'] = $date[0]; }else{ $instance['month'] = date("m"); } //Our Widget Content echo EM_Calendar::output(apply_filters('em_widget_calendar_get_args',$instance)); echo $args['after_widget']; } /** @see WP_Widget::update */ function update($new_instance, $old_instance) { //filter the new instance and replace blanks with defaults $new_instance['title'] = (!isset($new_instance['title'])) ? $this->defaults['title']:$new_instance['title']; $new_instance['long_events'] = ($new_instance['long_events'] == '') ? $this->defaults['long_events']:$new_instance['long_events']; $new_instance['category'] = ($new_instance['category'] == '') ? $this->defaults['category']:$new_instance['category']; return $new_instance; } /** @see WP_Widget::form */ function form($instance) { $instance = array_merge($this->defaults, $instance); ?> <p> <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title', 'dbem'); ?>: </label> <input type="text" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo esc_attr($instance['title']); ?>" /> </p> <p> <label for="<?php echo $this->get_field_id('long_events'); ?>"><?php _e('Show Long Events?', 'dbem'); ?>: </label> <input type="checkbox" id="<?php echo $this->get_field_id('long_events'); ?>" name="<?php echo $this->get_field_name('long_events'); ?>" value="1" <?php echo ($instance['long_events'] == '1') ? 'checked="checked"':''; ?>/> </p> <p> <label for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Category IDs','dbem'); ?>: </label> <input type="text" id="<?php echo $this->get_field_id('category'); ?>" name="<?php echo $this->get_field_name('category'); ?>" size="3" value="<?php echo esc_attr($instance['category']); ?>" /> <em><?php _e('1,2,3 or 2 (0 = all)','dbem'); ?> </em> </p> <?php } } add_action('widgets_init', create_function('', 'return register_widget("EM_Widget_Calendar");'));
[Moderator Note: Please post code or markup snippets between backticks or use the code button. Or better still – use the pastebin. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]
I have the same problem like this video, also I had migrated to new server, but I don’t know if that is the proble because I don’t see meta-box-order_post in my database
Hello, may I ask if now better wp security is camatible with wp super cache yet? I see:
You do not have sufficient permissions to access this page.
after I cleared the cache is the super cache
But the front end form is different from the backend form, anyway, can you show me which file is about the tinymice editor in the buddypress form?
Thanks!
yes I restored my backup, now seems no problem, I don’t know why but I will mark as solved now, thanks!
I can see that you disabled set as featured image in the buddypress tinymice editor, so if we have an option to enable it again, does it mean that we can use the cropped image inside the gallery as our eventimage? if so I would like to know how can I enable the function, thanks!
sorry this is not resolved yet right?
I click the “check the dev versions” button but no updates available , I am using 5.2.5
very strange, I have the experience exactly opposite:
https://fon2.smrmh.com/events/
when I select all category, no event, if select any of the category, events work
Thanks aglonwl for your reply, but clients what to be able to crop it themselves, like avatar or the media loader for this field, does pro version support that or any custom code suggestion for frontend buddypress image field submission?
can the event image field connect to the media uploader or let us select the event image right from the media uploader like setting up featured image?
i see, but how about buddypress? in the pro version can the information hook to the buddypress profile fields instead of user meta? because they will not have access of that and I don’t want them to anyway.