Forum Replies Created
-
AuthorPosts
-
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 iffopen
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!
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?
Nice, these are all good things to hear. What exactly is the pagespeed that you can turn on or off?
That’s so weird. Do you know what version of PHP the sever is running?
Excellent! You’re very welcome, i’m glad you were able to get everything working.
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.
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.
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?
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:
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.
Still putting up a 403 Permission Denied message when trying to view your website.
So sorry for the delay, very glad you were able to get this working.
First thing to try is adding the skin to a fresh Thesis & WordPress installation to see if it works with a blank canvas.
Seems to be working correctly now, thank you very much for the help Keith!
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?
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.
-
This reply was modified 10 years, 11 months ago by
-
AuthorPosts