Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Hello. Sure, the link is here: https://filipovphotography.com/gallery/

    The virtue galleries are definitely off as there is no lightbox anymore, but it is the Virtue toolkit that disables the tiled galleries. It is tested, but I will be glad to provide you with login and password for test…

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Hi! Thank you both for suggesting – I tried both options and neither one of them worked… @KadenceThemes – do you think there could be anything else?

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Thank you for responding! Of course I have – that was the first thing I did! They claim however that the problem is with Polylang, as opposed to with their plugin…

    We are seriously desperate, being pushed by some deadlines. I am willing to pay and get this resolved asap. Please, let me know how I can proceed. Hiring an external PHP developer that knows nothing about neither one of the architecture of the plugins seems a ridiculous idea… Please, tell me what to do…

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    @chouby , PLEASE HELP! This matter is urgent and I need some information on what to do!!!

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Thank you ??

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Thank you! This worked!

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Absolutely right! It was the Easy MailChimp Forms widget…. Thanks!

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Nope… It’s the widget that comes with the theme… I have added some custom CSS to change the width, but even when I remove that CSS it still does the same thing.

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Thanks!

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Hi Hannah! Thank you for the reply, but I can actually see the Author picker- the problem is that even though author is selected, it doesn’t show under the item.

    Here’s a sample link: https://www.eatstaylovebulgaria.com/portfolio/one-more-cinema/

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Hi guys! Thanks for the input, but none of this works… I already tried it and it doesn’t change anything.
    Here’s how a sample button looks like :

    [btn text="SAMPLE BUTTON" tcolor=#FFF ?link="https://www.google.com"]

    Here’s the php code of the button from the editor:

    function kad_button_shortcode_function( $atts) {
    	extract(shortcode_atts(array(
    		'bcolor' => '',
    		'link' => '',
    		'text' => '',
    		'tcolor' => '',
    ), $atts));
    	return '<a href="'.$link.'" class="kad-btn kad-btn-primary" style="background-color:'.$bcolor.'; color:'.$tcolor.'">'.$text.'</a>';
    }
    function kad_blockquote_shortcode_function( $atts, $content) {
    	extract(shortcode_atts(array(
    		'align' => 'center',
    ), $atts));
    		switch ($align)
    	{
    		case "center":
    		$output = '<div class="blockquote-full postclass clearfix">' . do_shortcode($content) . '</div>';
    		break;
    
    		case "left":
    		$output = '<div class="blockquote-left postclass clearfix">' . do_shortcode($content) . '</div>';
    		break;
    
    		case "right":
    		$output = '<div class="blockquote-right postclass clearfix">' . do_shortcode($content) . '</div>';
    		break;
    	}
    	  return $output;
    }
    function kad_pullquote_shortcode_function( $atts, $content) {
       extract( shortcode_atts( array(
    	  'align' => 'center'
      ), $atts ));
    
    	switch ($align)
    	{
    		case "center":
    		$output = '<div class="pullquote-center">' . do_shortcode($content) . '</div>';
    		break;
    
    		case "right":
    		$output = '<div class="pullquote-right">' . do_shortcode($content) . '</div>';
    		break;
    
    		case "left":
    		$output = '<div class="pullquote-left">' . do_shortcode($content) . '</div>';
    		break;
    	}
    
       return $output;
    }
    function kad_hrule_function( ) {
    	return '<div class="hrule clearfix"></div>';
    }
    function kad_hrpadding10_function( ) {
    	return '<div class="space_20 clearfix"></div>';
    }
    function kad_hrpadding20_function( ) {
    	return '<div class="space_40 clearfix"></div>';
    }
    function kad_hrpadding40_function( ) {
    	return '<div class="space_80 clearfix"></div>';
    }
    function kad_clearfix_function( ) {
    	return '<div class="clearfix"></div>';
    }
    function kad_columnhelper_function( ) {
    	return '';
    }
    function virtuetoolkit_register_shortcodes(){
       add_shortcode('accordion', 'kad_accordion_shortcode_function');
       add_shortcode('pane', 'kad_accordion_pane_function');
       add_shortcode('tabs', 'kad_tab_shortcode_function');
       add_shortcode('tab', 'kad_tab_pane_function');
       add_shortcode('columns', 'kad_column_shortcode_function');
       add_shortcode('hcolumns', 'kad_hcolumn_shortcode_function');
       add_shortcode('span11', 'kad_column11_function');
       add_shortcode('span10', 'kad_column10_function');
       add_shortcode('span9', 'kad_column9_function');
       add_shortcode('span8', 'kad_column8_function');
       add_shortcode('span7', 'kad_column7_function');
       add_shortcode('span6', 'kad_column6_function');
       add_shortcode('span5', 'kad_column5_function');
       add_shortcode('span4', 'kad_column4_function');
       add_shortcode('span3', 'kad_column3_function');
       add_shortcode('span2', 'kad_column2_function');
       add_shortcode('span1', 'kad_column1_function');
       add_shortcode('columnhelper', 'kad_columnhelper_function');
       add_shortcode('icon', 'kad_icon_shortcode_function');
       add_shortcode('video', 'kad_video_shortcode_function');
       add_shortcode('pullquote', 'kad_pullquote_shortcode_function');
       add_shortcode('blockquote', 'kad_blockquote_shortcode_function');
       add_shortcode('btn', 'kad_button_shortcode_function');
       add_shortcode('hr', 'kad_hrule_function');
       add_shortcode('space_20', 'kad_hrpadding10_function');
       add_shortcode('space_40', 'kad_hrpadding20_function');
       add_shortcode('space_80', 'kad_hrpadding40_function');
          add_shortcode('kad_youtube', 'kad_youtube_shortcode_function');
       add_shortcode('kad_vimeo', 'kad_vimeo_shortcode_function');
       add_shortcode('clear', 'kad_clearfix_function');
    }
    add_action( 'init', 'virtuetoolkit_register_shortcodes');
    
    function virtue_register_button( $buttons ) {
       array_push( $buttons, "|", "kadcolumns" );
       array_push( $buttons, "|", "kaddivider" );
       array_push( $buttons, "|", "kadaccordion" );
       array_push( $buttons, "|", "kadquote" );
       array_push( $buttons, "|", "kadbtn" );
       array_push( $buttons, "|", "kadicon" );
       array_push( $buttons, "|", "kadyoutube" );
       array_push( $buttons, "|", "kadvimeo" );
       return $buttons;
    }
    function virtue_add_plugin( $plugin_array ) {
       $plugin_array['kadcolumns'] = VIRTUE_TOOLKIT_URL . '/shortcodes/columns/columns_shortgen.js';
       $plugin_array['kadicon'] = VIRTUE_TOOLKIT_URL . '/shortcodes/icons/icon_shortgen.js';
       $plugin_array['kadaccordion'] = VIRTUE_TOOLKIT_URL . '/shortcodes/accordion/accordion_shortgen.js';
       $plugin_array['kadvideo'] = VIRTUE_TOOLKIT_URL . '/shortcodes/video/video_shortgen.js';
       $plugin_array['kadyoutube'] = VIRTUE_TOOLKIT_URL . '/shortcodes/youtube/youtube_shortgen.js';
       $plugin_array['kadvimeo'] = VIRTUE_TOOLKIT_URL . '/shortcodes/vimeo/vimeo_shortgen.js';
       $plugin_array['kadquote'] = VIRTUE_TOOLKIT_URL . '/shortcodes/pullquote/quote_shortgen.js';
       $plugin_array['kadbtn'] = VIRTUE_TOOLKIT_URL . '/shortcodes/btns/btns_shortgen.js';
       $plugin_array['kaddivider'] = VIRTUE_TOOLKIT_URL . '/shortcodes/divider/divider_shortgen.js';
       return $plugin_array;
    }
    function virtue_tinymce_shortcode_button() {
    
       if ( ! current_user_can('edit_posts') && ! current_user_can('edit_pages') ) {
          return;
       }
    
       if ( get_user_option('rich_editing') == 'true' ) {
          add_filter( 'mce_external_plugins', 'virtue_add_plugin' );
          add_filter( 'mce_buttons_3', 'virtue_register_button' );
       }
    
    }
    add_action('init', 'virtue_tinymce_shortcode_button');

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    It appeared quite simple actually- went to the Theme Options and allowed comments on Portfolio Items…

    Thread Starter EatStayLoveBulgaria

    (@eatstaylovebulgaria)

    Hey Hannah! Thank you so much! This was suck a silly thing and yet it solved the issue…

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