Forum Replies Created

Viewing 15 replies - 1 through 15 (of 114 total)
  • Thread Starter Schwarttzy

    (@schwarttzy)

    Also, Jetpack reconneccting will brake the shipping calculator too, you guys look sickening.

    Thread Starter Schwarttzy

    (@schwarttzy)

    Temporarily got it all back by downloading version 2.7.0 by using this link https://downloads.www.ads-software.com/plugin/woocommerce-services.2.7.0.zip . Next you need to deactive or uninstall “WooCommerce.com Update Manager” because it will try to update to there newest version 2.8.1. Also deactivate and delete “WooCommerce Shipping” because it too will ruin the shipping calculator. Now upload the downloaded file of version 2.7.0 to your WordPress and enjoy. Unless I see otherwise WooCommerce, from my perspective, this looks bad and I plan to report this plugin.

    • This reply was modified 2 months, 2 weeks ago by Schwarttzy.
    Theme Author Schwarttzy

    (@schwarttzy)

    Sorry about that, I haven’t updated the theme since 2014. I’m in the process of making the theme a block based theme. Although, it seems everyday there is some new feature that need to integrate that is has been causing delays. But I will be working hard to get a new version out.

    Thread Starter Schwarttzy

    (@schwarttzy)

    That’s like your opinion, man. Seriously though, I’ve been building WordPress Themes for years and this code solves so many problems I’ve had for years. I even wrote my own very similar code that created a block base theme many years ago… but no one ever notices what I’m up to around here. So, this is a great alternative and allows me to rapidly deploy amazing themes, the ability to modify websites for customers, and more importantly to me is the vastly improved HTML structure and CSS that has been pathetic for so long on WordPress. I’m sorry that you’re struggling, but after learning how to manipulate this code I’m happy and excited to work with it. Coding practices have been evolving since the invention of the internet and we all have to overcome and adapt. The days of Internet Explorer 6 were a pain, I’m so glad they’re long gone. Just wait until the release of the code for my theme Semper Fi Lite switching over to a completely block-based theme. I’m in the final phase of bug hunting. Which is coming very, very soon.

    Thread Starter Schwarttzy

    (@schwarttzy)

    Figured it out, click on “Edit Site” when logged in on the front page, then in the upper right corner is a circle half filled with the label “Styles” if the mouse hovers over it still long enough, click on it and under is the themes color styles which will change over the entire website. Hope this helps.

    Theme Author Schwarttzy

    (@schwarttzy)

    Sorry, it’s been since 2014 that I’ve updated the code. I have been working on update to the theme, but I’ve put the update on pause. I’ve paused the update because I didn’t want to put unpaid work into a project where the code is dated even before its release. The patterns feature is really cool, I’m waiting for WordPress 6.0 for the feature to settle out and will be finishing the update. Hopefully, you’ll consider changing your rating when the update is relased.

    Theme Author Schwarttzy

    (@schwarttzy)

    It’s mostly there, finishing some code, and enhancing the suggested post and stuff, was very interested in making the theme a block theme but have since lost interest

    Theme Author Schwarttzy

    (@schwarttzy)

    I haven’t forgotten, it is a huge project. Currently, have a weird pagination bug slowing me down too. But it’s still in the works. Nothing from the old theme is to be reused, but it will still be very similar.

    Theme Author Schwarttzy

    (@schwarttzy)

    Hey Michaela!

    I have been working on the theme again since last week and have made some more progress with the goal of completion. I don’t typically work this slow, just had forgotten about the project. But I’m back at it and hope to have a beta version soon for you to test.

    Currently chasing down a pagination bug, need work on the widget code, that should be it unless I find something more the theme needs.

    Thread Starter Schwarttzy

    (@schwarttzy)

    So I think it was an issue with Jetpack and Akismet with the recent update it working great. Also, I’m upgrading the server to 7.4 php and MariaDB Server 10.5 which should help. Thanks for the time

    Theme Author Schwarttzy

    (@schwarttzy)

    Soon I’ll be in the winter months where my main job slows down and I’ll have to improve get the theme updated. A little bit ago I was finally able to get the theme “Semper Fi Lite” approved. Which means I’ll be able to transfer the code over. But let see if there is an easy fix. I need to know the browser you’re using and what’s website. It’s very possible that some plugin has injected a bit of code and is messing with the CSS too

    Theme Author Schwarttzy

    (@schwarttzy)

    Hey Mikaba,

    I’m doing well. Really could use a skydive and couple bucks, but I’ll make it.

    The good news is that my other theme Semper Fi Lite has made it to the last step of approval, “Final Review”. https://themes.trac.www.ads-software.com/report/24 Assuming that I pass the final review with that theme, I’ll be immediately bringing all the new code I’ve written over to Adventure

    Theme Author Schwarttzy

    (@schwarttzy)

    Hey Mikaba,

    I’m in the process of getting some updates out, but first I have to get the code approved with www.ads-software.com. I’m not sure when because I just waited 5 months for the first look at my newer code. Although, I’d like to think I have new version within the year.

    Thread Starter Schwarttzy

    (@schwarttzy)

    I was able to fix the problem a couple of days ago by removing all connections. There are two connections, turn off the WordPress side, and then turn off / disconnect the facebook side. Then re-enable everything from the plugin on the WordPress site. This time when the server running WordPress logs in and locks the account out, go to facebook and say that was you.

    • This reply was modified 5 years, 2 months ago by Schwarttzy.
    Thread Starter Schwarttzy

    (@schwarttzy)

    Not really sure what the problem is but this works… except when I refresh the customizer it says that there are no images because of the adding 300×300 to the name.

    function semperfi_sanitize_image( $input , $setting )  {
        
        $input = esc_url( $input );
        
        $attrs = $setting->manager->get_control( $setting->id )->input_attrs;
        
        $extension = pathinfo( $input , PATHINFO_EXTENSION );
        
        if ( $input != $setting->default ) {
        
            if ( $extension == 'jpg' ) {
    
                return wp_get_attachment_image_src( attachment_url_to_postid( $input ) , $attrs['img_size'] )[0];
    
            } elseif ( $extension == 'jpeg' ) {
    
                return wp_get_attachment_image_src( attachment_url_to_postid( $input ) , $attrs['img_size'] )[0];
    
            } elseif ( $extension == 'png' ) {
    
                return wp_get_attachment_image_src( attachment_url_to_postid( $input ) , $attrs['img_size'] )[0];
    
            } elseif ( $extension == 'gif' ) {
    
                return $input;
    
            }
            
        } else {
            
            return esc_url( $setting->default );
        
        }
        
    }

    The customizer image needs to a rework in my opinion, could we just add an image size to its options and default to full size if not set?

Viewing 15 replies - 1 through 15 (of 114 total)