constantine.johny
Forum Replies Created
-
Forum: Plugins
In reply to: [bxSlider integration for WordPress] Gallery Thumbnails ScrollHi, did you solve this? I have the same problem, thumbnails do not scrool, I can see the arrows to move them, but it’s doing nothing when I click the arrow.
barinagabriel:
you can use the built-in filter to change this: wppb_login_url
Hi, what do you mean by that? Am not sure if I completely understand. How do I do that?
Thanks ??Forum: Fixing WordPress
In reply to: Using static or default home page for different themesHi, I only found a workaround for this.
In .htaccess I added a rule to redirect users displaying mobile theme from homepage to “/news” page, so the’ll never see the static home page.
Would love some better solution, but this works OK.
Hi, I had the same error.
You probably have fopen disabled on your hosting…To fix this, open youtubechanel.php and fix these lines:
Find function function xml2array($url, $get_attributes = 1, $priority = ‘tag’)
Comment this:/* if (!($fp = @ fopen($url, 'r'))) { return array (); } */
And just after those lines add this:
$ch = curl_init(); $timeout = 0; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch);
Next, comment this:
/*while (!feof($fp)) { $contents .= fread($fp, 8192); } fclose($fp); */
And it should be working now.
Forum: Plugins
In reply to: [Youtube Channel Plugin] Not showing on live websiteHi, I had the same error.
You probably have fopen disabled on your hosting…To fix this, open youtubechanel.php and fix these lines:
Find function function xml2array($url, $get_attributes = 1, $priority = ‘tag’)
Comment this:/* if (!($fp = @ fopen($url, 'r'))) { return array (); } */
And just after those lines add this:
$ch = curl_init(); $timeout = 0; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch);
Next, comment this:
/*while (!feof($fp)) { $contents .= fread($fp, 8192); } fclose($fp); */
And it should be working now.
Hi, I had the same error.
You probably have fopen disabled on your hosting…To fix this, open youtubechanel.php and fix these lines:
Find function function xml2array($url, $get_attributes = 1, $priority = ‘tag’)
Comment this:/* if (!($fp = @ fopen($url, 'r'))) { return array (); } */
And just after those lines add this:
$ch = curl_init(); $timeout = 0; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch);
Next, comment this:
/*while (!feof($fp)) { $contents .= fread($fp, 8192); } fclose($fp); */
And it should be working now.
Forum: Plugins
In reply to: [HungryFEED] [Plugin: HungryFEED] How often to fetch items?OK, thanks a lot. This is what I needed to know ??
Yep, I was able to go to permalinks while e-commerce was still installed. It only messed my static pages, not the administration section.
Forum: Plugins
In reply to: [Autoptimize] [Plugin: Autoptimize] Process only some of the JS filesDidn’t help.
The plugin “Lightbox-plus” stops working after enabling Optimize JS. I added the .js files to the $donmove variable, but still not working..Well thats really simple. I made something similar with a custom button.
All you need to do is use the shortcodes mentioned in Installation tab and modify them as this:
[formlightbox_call title="lightbox form" class="1322379893472"] <img src="path/to/your/image.png alt="" /">[/formlightbox_call] and object shortcode [formlightbox_obj id="1322379893472" style="" onload="false"][form shortcode here][/formlightbox_obj]
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Not working linksYeah, go to /wp-admin/options-permalink.php and change the permalinks to Default (/?p=123). Save the form.
Now change the permalinks back to your original value, Save. That should be it ??Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Checkout Page Just Refreshes in ChromeChange the permalinks structure to default value and then change it back. It should solve this problem.
Hi, I had the same problem, but the solution is quite simple.
Go to /wp-admin/options-permalink.php and simply click on Save changes. It will rebuild all of your permalinks on the page and everything should work OK (in my case it worked ?? ).
Or try to change the permalinks to the “?p=123” (default), Save, and then change to the value you use, and save again ??
Hi, I have the same problem. Shrink image is checked, but the folder which should contain cache files is empty (I set the premission to 777, still empty). The images are displayed too big (are not resized at all).
Using WordPress 3.3.1 and WordPress Mobile pack 1.2.4. Any clue please? Do I have to set something else than just activating the “shrink images” option?
Hi, I have a similar problem I think. have a switcher plugin and a mobile theme, everything works perfect.
The problem is that in my browser web page I have a static home page, eg. not new post listing. But in my mobile template I want the post listing as my homepage. In the administration there is only one setting for both, and I seem unable to change it only for either mobile or browser version, it changes both of them.
Any way to accomplish this?