Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter stefan2k

    (@stefan2k)

    Just to let you know how I solved the problem…

    I introduced a custom post type which is largely hidden. When the plugin is activated a post of this type gets published (which no one can see) and with every settings update the post gets edited.

    This post lacks event data therefore it does not show up in the calendar BUT Outlook thinks there is something unread -> synchronizes the ical feed.

    Best regards,
    Stefan

    Thread Starter stefan2k

    (@stefan2k)

    Self-written plugin so no plugin support there.

    The wordpress version is given by the owner.. not my choice ;-(

    Thread Starter stefan2k

    (@stefan2k)

    Could someone move this to the “Hacks” section please?

    Forum: Hacks
    In reply to: Get checkbox values on delete
    Thread Starter stefan2k

    (@stefan2k)

    Aweseome … works like a charm 🙂

    Thank you!

    Thread Starter stefan2k

    (@stefan2k)

    For those searching… it works like this:

    var $j=jQuery.noConflict();
    
    			$j(document).ready(function(){
    
    				$j('a.submitdelete').click(function(e){		
    
    					e.preventDefault();
    
    					$j("#confirm-dialog").dialog({
    						resizable: false,
    						height:200,
    						modal: true,
    						buttons: {
    							"Button1": function() {
    								$j( this ).dialog( "close" );
    
    							},
    							"Button2": function() {
    								$j( this ).dialog( "close" );
    
    							}
    						}
    					}).show();
    				});
    
    			});

    And of course you need a div somewhere in your wordpress page.

    In the end this approach didn’t work out for me as in the post overview the dialog didn’t show up… because, right, there is no div in the post overview page 🙂

Viewing 5 replies - 1 through 5 (of 5 total)