Sitesao Support
  • Home
  • Themes
  • Plugins
  • Support

Support Forums

Home/Forums/
  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 10 years ago fabriceleven
    Participant
    Post count: 17

    Ok figured out how to make the variation gallery work (after countless back and forth). Even though there is currently a save bug when you press save variation button. Here is a screenshot of how it works for those who are having trouble with variations:

    http://secure.fabriceleven.com/1kP8e


    in reply to: Variation gallery not working or saving
    10 years ago fabriceleven
    Participant
    Post count: 17

    Yes, i understand what you mean now. There should be a helpful tip explaining this etc..

    However there is still a bug. The variations are not saved. Look, i made a video:

    http://secure.fabriceleven.com/16gL7
    you can see that at first the save button is not activated and i have to change stock number to make it work and then you can see that after i update the page the first variation item (x-large + white) has not been updated with new pictures.

    .. after some more research, the way to avoid this bug is instead of pressing “Save changes” at the variation level you need to press “update” at the top of the page. Then images will not be lost then. This bug still needs to be fixed since users expect their changes to be saved when you press “save changes” button at the bottom.


    in reply to: Product Masonry & Product Variation issues
    10 years ago fabriceleven
    Participant
    Post count: 17

    that worked, thank you. Will this be fixed in the next update? Or do i need to always keep these files?


    in reply to: Centering content is not working in visual composer
    10 years ago fabriceleven
    Participant
    Post count: 17

    Can i talk to someone who understands this problem better or knows better english? I did set the items for variation. Here is a video for you of it not working

    http://secure.fabriceleven.com/16zY6

    You can see that black shirt picture is set for large + black. However when i set it to that option in the store i STILL see the white picture!! I should ONLY see black shirt pictures when i set it to large + black or xlarge + black.

    PLEASE FIX!


    in reply to: Product Masonry & Product Variation issues
    10 years ago fabriceleven
    Participant
    Post count: 17

    yes its working with white but its not working with black. WHen i select black and large i still see white pictures.


    in reply to: Product Masonry & Product Variation issues
    10 years, 1 month ago fabriceleven
    Participant
    Post count: 17

    No it’s not working. Those images are just part of regular Gallery. The way it should work is when you select black + large it automatically switches to black images.

    I am not making this up, it’s obviously a bug.


    in reply to: Product Masonry & Product Variation issues
    10 years, 1 month ago fabriceleven
    Participant
    Post count: 17

    Have the same issue with variations not saving sometimes (also the variation gallery only works sometimes). Running version 1.1.8. I wish i didn’t spend 3 weeks of development time on this theme


    in reply to: Product Masonry & Product Variation issues
    10 years, 1 month ago fabriceleven
    Participant
    Post count: 17
    This reply has been marked as private.

    in reply to: Variation gallery not working or saving
    10 years, 2 months ago fabriceleven
    Participant
    Post count: 17

    Yes i know it’s not supported, i was just asking where you were registering a post type since there is no developer documentation 🙁

    Anyway, after searching for an hour, i found it in
    plugins/sitesao-core/includes/metaboxes.php for those that are interested around line 200

    You can then add a function into your child theme and copy the meta_box array to your custom post type like this (i removed options i didn’t need for team post type) :

    function add_settings_to_teammates() {
    	$meta_box = array (
    			'id' => 'dh-metabox-page-settings',
    			'description' =>'',
    			'fields' => array (
    					array (
    							'label' => __ ( 'Content Page no Padding', 'sitesao' ),
    							'description' => __ ( 'If checked. content of page  with no padding top and padding bottom', 'sitesao' ),
    							'name' => '_dh_no_padding',
    							'type' => 'checkbox',
    					),
    
    				
    
    					array (
    							'label' => __ ( 'Transparent Main Menu', 'sitesao' ),
    							'description' => __ ( 'Enable or disable main menu background transparency.', 'sitesao' ),
    							'name' => 'menu_transparent',
    							'type' => 'select',
    							'options'=>array(
    									'-1'=>__('Global','sitesao'),
    									'1'=>__('On','sitesao'),
    									'2'=>__('On and White Transparent','sitesao'),
    									'0'=>__('Off','sitesao')
    							)
    					),
    
    					array (
    							'label' => __ ( 'Page Heading', 'sitesao' ),
    							'description' => __ ( 'Enable/disable page heading or custom page heading', 'sitesao' ),
    							'name' => 'page_heading',
    							'type' => 'select',
    							'value'=>'default',
    							'options'=>array(
    									'default'=>__('Default Heading','sitesao'),
    									'heading'=>__('Custom Heading','sitesao'),
    									'0'=>__('Hide','sitesao')
    							)
    					),
    
    
    					array (
    							'label' => __ ( 'Page Heading Background Image', 'sitesao' ),
    							'description' => __ ( 'Custom heading background image.', 'sitesao' ),
    							'name' => 'page_heading_background_image',
    							'type' => 'image',
    					),
    
    					array (
    							'label' => __ ( 'Page Heading Title', 'sitesao' ),
    							'description' => __ ( 'Custom heading title.', 'sitesao' ),
    							'name' => 'page_heading_title',
    							'type' => 'text',
    					),
    					array (
    							'label' => __ ( 'Page Heading Sub-title', 'sitesao' ),
    							'description' => __ ( 'Custom heading sub-title.', 'sitesao' ),
    							'name' => 'page_heading_sub_title',
    							'type' => 'text',
    					),
    					array (
    							'label' => __ ( 'Button text', 'sitesao' ),
    							'description' => __ ( 'Custom heading button text.', 'sitesao' ),
    							'name' => 'page_heading_button_text',
    							'type' => 'text',
    					),
    					array (
    							'label' => __ ( 'Button URL', 'sitesao' ),
    							'description' => __ ( 'Custom heading button URL.', 'sitesao' ),
    							'name' => 'page_heading_button_url',
    							'type' => 'text',
    					),
    
    			)
    	);
    	add_meta_box('dh-metabox-page-settings', 'Settings', 'dh_render_meta_boxes', 'teammates', 'normal', 'high', $meta_box);
    }
    
    add_action( 'add_meta_boxes', 'add_settings_to_teammates' );

    in reply to: Bugs and optimizations
    10 years, 2 months ago fabriceleven
    Participant
    Post count: 17

    ok, i thought you might have a setting for it already.

    Also where are you registering post meta “Page Settings” (like header background? etc) I have a custom post type (team) and i need to add it to the list of supported types (So that my team page also has the same settings options as a regular page)


    in reply to: Bugs and optimizations
    10 years, 2 months ago fabriceleven
    Participant
    Post count: 17

    ok, can you tell me how to change the “instashop” text at the bottom of the product pages?


    in reply to: Bugs and optimizations
    10 years, 2 months ago fabriceleven
    Participant
    Post count: 17

    wow, first answer, i know i can use a bigger image, that won’t solve the issues since then i’ll be putting a bigger image and it needs to be the right proportion. Why don’t you just implement it properly like i am suggesting? It doesn’t matter honestly i already solved the problem by using a different method i am just trying to make this theme better for others.

    i don’t think you understand what i am trying to do. I want ONLY category and subcategory pages to have no sidebar. I want the regular product listings to have the sidebar

    no sure what you are trying to say, again i did it myself in my child theme and it works fine

    you have same functions in both functions.php file. Here is the screenshot http://secure.fabriceleven.com/ugMp

    The reason you are not getting 5 star ratings on your templates and many sales is because developers just look at the sources code and load time of your template and move along. I feel like i got a poor coded piece of code that i have to spend days fixing.


    in reply to: Bugs and optimizations
    10 years, 2 months ago fabriceleven
    Participant
    Post count: 17

    Also i noticed that there are 2 functions.php files that are almost exactly the same one in the theme folder and one in your plugin folder.. why is that? Can you please optimize the theme so that there is only one file used.


    in reply to: Bugs and optimizations
    10 years, 2 months ago fabriceleven
    Participant
    Post count: 17

    Regarding your first reply
    I already fixed the 2 issues
    http://secure.fabriceleven.com/1fOki > i used the built in VC modules since they use the proper image background property to fix the issue. To replicate it, just set up the columns like in my screen shot.

    http://secure.fabriceleven.com/quyE > again i fixed this with basic CSS code in my child theme, you can easily replicate it this i am not going to introduce the bug back into the site.

    Dequeuing the Woocommerce scripts will work fine, the cart works independently if you look at the code you can see that there is a check to see if woocommerce is running on the page. The only thing that you do need to leave is “wp_dequeue_script( ‘wc-add-to-cart-variation’ );” and its only if users use the ajax popup and products are in one of your scrollers (meaning they can be on a page that’s not woocommerce). You can also put if check so see if specific widgets are running. I am just trying to make this theme better for you guys, right now you have WAY too many scripts loading on the page and any serious developer won’t use your theme because of this.

    “i see the VC text blog is support full WP editor like attachment,” Seriously? don’t you think i know this. I am talking about centering it vertically even your demo has this issue http://secure.fabriceleven.com/1kngQ . Yes i know i am being picky and i can add padding to the element, i am just saying it would be a good option for users to have to do it properly with a single checkbox since others themes have it.

    thank you about the cart icon

    Regarding second response
    This is how i have my settings http://secure.fabriceleven.com/14jBm
    Both the category and the shop page are set to full width, however i want the product listing page to have a sidebar. Currently that’s not an option. All you have to do is just add another similar setting and use is_product_category() check . I dont have the sit up yet, i am developing locally that’s why i can’t show it to you yet.


    in reply to: Bugs and optimizations
    10 years, 2 months ago fabriceleven
    Participant
    Post count: 17

    Any word on these issues or plans for implementation?

    On another note, in woocommerce options where you set category layout those settings seem to affect product list layout as well. For example i want to have no sidebars for the store page (ex: /store), no sidebars for sub category page (ex: /store/men/) and a left sidebar for product listing page (ex: /store/men/shorts). Right now that doesn’t seem to work…

    Thanks for your help


    in reply to: Bugs and optimizations
Viewing 15 posts - 1 through 15 (of 17 total)
1 2 →
© Copyright Sitesao.com - Support Policy