Thomas

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 99 total)
  • Author
    Posts
  • in reply to: Criss Cross icon font page not displaying #372

    Thomas
    Keymaster

    Ok, I have an idea of what you can try. If you are able to view the Criss Cross icon font page but no content displays, the steps below will hopefully solve your problem.

    1) Go into the box.php file and search for the code below:

    public function my_admin() {
            echo wp_remote_fopen( THESIS_USER_SKIN_URL . "/fonts/exothesis-icons/icons-reference.html");
    }

    2) Replace the code from above with the code below:

    public function my_admin() {
            function file_get_contents_curl($url) {
            $ch = curl_init();
     
            curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE);
            curl_setopt($ch, CURLOPT_HEADER, 0);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
            curl_setopt($ch, CURLOPT_URL, $url);
            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE); 
     
            $data = curl_exec($ch);
            curl_close($ch);
     
            return $data;
            }
     echo file_get_contents_curl( THESIS_USER_SKIN_URL . "/fonts/exothesis-icons/icons-reference.html");
     }

    3) If the code from Step 2 does not work, try replacing it with the code below:

    public function my_admin() {
            echo file_get_contents( THESIS_USER_SKIN_URL . "/fonts/exothesis-icons/icons-reference.html");
    }

    Since the server configuration supports cURL, I am hoping that Step 2 solves your problem, even though wp_remote_fopen is supposed to revert to cURL if fopen doesn’t retrieve the content. Otherwise, file_get_contents may be a possible solution but not as good as the other two.

    This is also assuming that wp_remote_fopen is actually the cause of your problem.

    Hope this information helps. Crossing my fingers!

    in reply to: Custom CSS not working #370

    Thomas
    Keymaster

    Paulf, could you send me a link to your website and/or login credentials so I can take a look and try to diagnose where the problem might be coming from?

    in reply to: Total width does not change from default #368

    Thomas
    Keymaster

    Nice, these are all good things to hear. What exactly is the pagespeed that you can turn on or off?

    in reply to: Criss Cross icon font page not displaying #364

    Thomas
    Keymaster

    That’s so weird. Do you know what version of PHP the sever is running?

    in reply to: Single Post #363

    Thomas
    Keymaster

    Excellent! You’re very welcome, i’m glad you were able to get everything working.

    in reply to: Total width does not change from default #356

    Thomas
    Keymaster

    Hmmmm, the width issue seems strange to me. Especially since you said you reset the skin.

    After inspecting your website, it seems as though you have a bunch of CSS stylesheets loading but none of them include the Thesis css.css stylesheet.

    Becuause of this, the Thesis CSS Reset is not taking place. Is there any way you could add Flatisfy to a fresh WordPress install and check if the width settings work then?

    The first image below shows the stylesheets that load with Flatisfy out-of-the-box and the second image shows the stylesheets loading with your website.

    Flatisfy Basic CSS

    cermlich CSS

    in reply to: Custom email list form (phpList) #352

    Thomas
    Keymaster

    My best suggestion for doing this would be to take the custom HTML code from your email form and place it into a Thesis Text Box.

    Then, add the classes built into Fatisfy to style your HTML code. These classes can be found on this forum reply.

    Samples of Aweber & Mailchimp forms using custom HTML code can be found on this page to use as a reference of where the classes should be placed.

    Hope this helps

    • This reply was modified 10 years, 11 months ago by  Thomas.
    in reply to: Custom email list form (phpList) #349

    Thomas
    Keymaster

    Hmm, I am a little confused about what you are trying to do. You just want to create an email form using a different email provider?

    in reply to: Single Post #348

    Thomas
    Keymaster

    To show only one post on your homepage, you will need to visit your Thesis > Skin Editor page and click the gear icon next to the Home button. The image below shows this:

    Gear Icon Skin Editor

    Within the box that displays, select the WP Loop tab and set the number to 1.

    This will show only your latest, one post on your homepage.

    in reply to: Navigation button not responsive on phone #346

    Thomas
    Keymaster

    Still putting up a 403 Permission Denied message when trying to view your website.

    in reply to: Not getting full-width on iPhone #345

    Thomas
    Keymaster

    So sorry for the delay, very glad you were able to get this working.

    in reply to: Unable to activate skin #344

    Thomas
    Keymaster

    First thing to try is adding the skin to a fresh Thesis & WordPress installation to see if it works with a blank canvas.

    in reply to: Responsive not working? #343

    Thomas
    Keymaster

    Seems to be working correctly now, thank you very much for the help Keith!

    in reply to: Criss Cross icon font page not displaying #342

    Thomas
    Keymaster

    Hmmm, i’ve never seen/heard this problem before.

    My best guess is that the problem lies within a difference between your test sites & your new site.

    Different servers? Different plugins (try deactivating)?

    Was this with a fresh WP install?

    in reply to: Total width does not change from default #341

    Thomas
    Keymaster

    I am not sure why the width wouldn’t change. Did you set the width as 900 on your Thesis > Skin Design page under Content/Sidebar Widths & Layout Settings? I have had no problems with this after testing.

    As for your logo question, the option was built to remove your site title & tagline when you use a custom logo image. It replaces the text link of your site name to an image link of your logo.

    Unfortunately, you can’t show the title & tagline + a custom logo image, it has to be one or the other unless you include the title & tagline manually using a text box.

Viewing 15 posts - 16 through 30 (of 99 total)