Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • in reply to: Stroke to fill buttons missing css #222669
    jimpalompa
    Member
    Post count: 16

    Thank you sir 😛

    Have a good day!

    in reply to: Stroke to fill buttons missing css #222666
    jimpalompa
    Member
    Post count: 16

    Well, you probably just have to move the

    a.sf-button.stroke-to-fill {
    	background: transparent;
    }

    further down in the css, hence Cascading Style Sheet 😉

    You can mark this thread as resolved now.

    Cheers!

    in reply to: Stroke to fill buttons missing css #222544
    jimpalompa
    Member
    Post count: 16

    I’m afraid our test site where I’m using Atelier is hidden by IP. But look at swiftideas.com

    Right click the “Learn More” button in the slider and inspect.

    Change
    <a class="sf-button large black bordered

    to
    <a class="sf-button large black stroke-to-fill

    And it will replicate the issue.

    in reply to: Add support for SearchWP plugin #222527
    jimpalompa
    Member
    Post count: 16

    Speaking of search, I would love to see a search option for the Header search where the search form is already “open”.

    It’s more or less standard for ecommerce stores:
    https://www.amazon.com/
    http://www.ebay.com/
    http://www.walmart.com/
    http://nelly.com/

    It would also be nice to have a search icon in mobile view, next to the cart.

    Just some ideas and improvements 😉

    in reply to: Stroke to fill buttons missing css #222494
    jimpalompa
    Member
    Post count: 16

    Nope the problem is still there, it tells me there’s an update available. Deleting site_transient_update_plugins from tables does not help either.

    I do remember I got a debug error from wp-updates-plugin.php line 79 if that helps:

    
    'version' => (isset($plugin_info->checked)) ? $plugin_info->checked[$this->plugin_path] : 0 // Current version
    
    in reply to: Add support for SearchWP plugin #222442
    jimpalompa
    Member
    Post count: 16
    This reply has been marked as private.
    in reply to: Stroke to fill buttons missing css #222439
    jimpalompa
    Member
    Post count: 16

    Swift Ideas – Ed:
    Yeah, but right after you have:

    a.sf-button.black {
    background-color: #222;
    }

    So black buttons with stroke to fill does not work.

    Rui Guerreiro:
    It is still version 1.63

    in reply to: Add support for SearchWP plugin #222380
    jimpalompa
    Member
    Post count: 16

    I keep getting zero results. I’ve tried both the WooCommerce Integration extension and the manual instructions.

    My main purpose using this plugin is to add custom fields to searches and also use search weight (relevance), so the search results would improve a lot.

    I assume the support here does not cover third party plugins, but if you want I can send you a copy of the plugin if you want to test it with Atelier 😉

    in reply to: Stroke to fill buttons missing css #222376
    jimpalompa
    Member
    Post count: 16

    I’m using Swift Framework 1.63, which is the latest version available at the moment. Though it is mentioned in the Atelier 1.74 Changelog “Share buttons now open popup rather than new tab (needs Swift Framework v1.64+)”.

    That would be my next question, my dashboard keeps telling me that there’s an available update for Swift Framework. However the update available is 1.63, the same version installed…

    Could you give me a direct link to a later version of Swift Framework if available please.

    in reply to: Stroke to fill buttons missing css #222152
    jimpalompa
    Member
    Post count: 16

    Oh sorry, this is through the Swift Slider “Edit slide” page. Don’t know if it appears anywhere else.

    But I can see that the Swift Page Builder also uses stroke-to-fill class on buttons.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Typekit in Redux Framework and settings for Maintenance Mode #220628
    jimpalompa
    Member
    Post count: 16

    Sounds good 😉

    If we could have a textfield in the font options called “Typekit ID” and when it is filled with ID, the necessary javascript is loaded. See http://help.typekit.com/customer/portal/articles/649336

    Then we could have a checkbox next to each font option “Use Typekit” and when checked the font dropdown changes to a textfield where we can fill in our font name. Keeping all the other font options (size, line-height, weight etc.) as the standard fonts has.

    My temporary fix for Typekit is to simply edit the field_typography.php in the swiftframework plugin, and append the standard fonts with my Typekit like so:

    
                ...
                "'Trebuchet MS', Helvetica, sans-serif"                => "'Trebuchet MS', Helvetica, sans-serif",
                "Verdana, Geneva, sans-serif"                          => "Verdana, Geneva, sans-serif",
                "jubilat, sans-serif"                                  => "jubilat, sans-serif",
                "brandon-grotesque, sans-serif"                        => "brandon-grotesque, sans-serif",
            );
    

    I may have to do this every time I update the plugin, but I’d rather do that instead of using a lot of !important tags in the css 🙂

    As for the maintenance thing, using “access by IP” makes it really easy to preview the page without login in when launching a new site. It also helps developers to show the work progress for clients, and if we could let shop managers (capability: manage_woocommerce) and other users access the page while in maintenance, they could add their products while developers are working on the design and features.

    My temporary fix for Maintenance is to add this to my functions.php:

    
    add_action( 'get_header', 'sf_maintenance_mode' );
    if ( ! function_exists( 'sf_maintenance_mode' ) ) {
        function sf_maintenance_mode() {
            global $sf_options;
            $custom_logo        = array();
            $custom_logo_output = $maintenance_mode = "";
            if ( isset( $sf_options['custom_admin_login_logo'] ) ) {
                $custom_logo = $sf_options['custom_admin_login_logo'];
            }
            if ( isset( $custom_logo['url'] ) ) {
                $custom_logo_output = '<img src="' . $custom_logo['url'] . '" alt="maintenance" style="margin: 0 auto; display: block;" />';
            } else {
                $custom_logo_output = '<img src="' . get_template_directory_uri() . '/images/custom-login-logo.png" alt="maintenance" style="margin: 0 auto; display: block;" />';
            }
    
            if ( isset( $sf_options['enable_maintenance'] ) ) {
                $maintenance_mode = $sf_options['enable_maintenance'];
            } else {
                $maintenance_mode = false;
            }
    
            if ( $maintenance_mode == 2 ) {
    
                $holding_page     = __( $sf_options['maintenance_mode_page'], 'swiftframework' );
                $current_page_URL = sf_current_page_url();
                $holding_page_URL = get_permalink( $holding_page );
                $ip = $_SERVER['REMOTE_ADDR']; // added
                $allowed = array('XXX.XXX.XXX.XXX','XXX.XXX.XXX.XXX'); // added
    
                if ( $current_page_URL != $holding_page_URL ) {
                    // if ( ! current_user_can( 'edit_themes' ) || ! is_user_logged_in() ) {
                    if ( ! in_array($ip, $allowed) ) { // changed
                        wp_redirect( $holding_page_URL );
                        exit;
                    }
                }
    
            } else if ( $maintenance_mode == 1 ) {
                if ( ! current_user_can( 'edit_themes' ) || ! is_user_logged_in() ) {
                    wp_die( $custom_logo_output . '<p style="text-align:center">' . __( 'We are currently in maintenance mode, please check back shortly.', 'swiftframework' ) . '</p>', get_bloginfo( 'name' ) );
                }
            }
        }
    }
    

    Thanks again for the smoothest theme I’ve worked with yet.

    Cheers!

Viewing 11 posts - 1 through 11 (of 11 total)