Support » Plugin: Page Builder by SiteOrigin » Upgrading from 1.5 to Current

  • Hi All,

    I’ve come across an issue with PageBuilder where the Visual Row Styles have vanished after upgrade. We used to have the following styles for our staff to pick from:

    Image Here

    In the new version this row style selector has vanished. How do I go about re-introducing these styles?

    In our functions.php there is this code which was used to add custom row styles:

    function vantage_panels_row_styles($styles) {
    	$styles['vgfull vg-shadow'] = "With Shadow, No Spacing";
            $styles['vgfull vg-shadow vg-spacing'] = "With Shadow, With Spacing";
            $styles['vgfull '] = "No Shadow, No Spacing";
            $styles['vgfull vg-spacing'] = "No Shadow, With Spacing";
            $styles['vgfull vg-shadow vgPageIntro'] = "Full Width for page intro";
            $styles['vgfull vg-more'] = "More Box Mid" ;
            $styles['vgfull vg-more left'] = "More Box left" ;
            $styles['vgfull vg-more right'] = "More Box right" ;
            $styles['vgfull vgBestSeller'] = "Best Sellers" ;
    
    	return $styles;
        }
    add_filter('siteorigin_panels_row_styles', 'vantage_panels_row_styles');

    Does this code need adjustment?

    Thanks in advance, I appreciate it.

    https://wordpress.org/plugins/siteorigin-panels/

  • The topic ‘Upgrading from 1.5 to Current’ is closed to new replies.