Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
I was able to sort it out. thanks.
Hello
How do I align the first menu item with the top and bottom borders absolutely to the left?
Thank you I have Custom Css
What would be the needed code?
I am using PHPlugins for my menu. I would like to also include a Border-botton of 1px in a specific colour at the bottom on the menu site wide.
I see there is a ttg_style_navigation section.
Do I add it here and what do I add?
Do I need to include the full navigation.css?
Please step me through the process.
Thank you
Here is my website;
Hi
Is there are work a round to download images from Dropbox rather than a folder in the same server?
Hi
Which file and where is it located which instructs where the PHPlugin is located. I want to edit the file rather than having to re-export the Theme.
Thanks
Hi
I would like to enable Breadcrumbs without having to rexport. Can you supply me the hook code to insert into PHPlugins please.
Hi
Please look at this link; https://asip.co/film-gallery/
And let me know how to remove the 2 lines under the Slider.
Thank you
Thank you Ben for the clarifying what I thought may be the problem, after searching in the community. I asked GoDaddy if I could upgrade from a shared hosting to a VPS and they denied me flat out. I would have to loose the balance of my annual subscription for the shared hosting and take a new one for the VPS. I responded that this gives me no incentive to stay with GoDaddy.
In the interim, assuming I don't have the latest cPanel and I am upgraded, how can that help?
Thank you Ben for your reply.
It occurs after loading a certain amount of images. Then I have to wait a while and then recommence the publish and after several images are uploaded the error message reappears and so on.
This is the response from Godaddy;
Good Day, Here is the most frequent error code the error_log is recording in your hosting. error_log = [12-Jul-2017 10:43:35 UTC] PHP Notice: Undefined variable: album in /home/arnoldszmerlings/public_html/index.php on line 164 I am not sure if and how this may pertain to the errors you are receiving, however we would be happy to ensure your hosting environment is usable and functioning within our operating parameters for your as we are available 24/7. Regards, Hosting Support
Thanks,
Help 2.0
I am receiving the following error message when uploading a gallery from CE4 Publisher
Error uploading rendition.
Unable to complete the action.
Headers: { [error] => { [errorCode] => "networkConnectionLost" [name] => "The network connection was lost." [nativeCode] => -1005
}
}
Thank you Matthew, I'll look into it.
Thank you for your response Matthew.
So after some anguish and then taking a big breath I was blessed to find the issue and how to resolve it. It would have taken Godaddy two seconds to direct me the right way, if they only cared.
In Cpanel under Security settings there is a section named;Hotlink Protection. I enabled it and found it stopped all my images uploading. I then disabled it and all my images would still not upload. I did inform Godaddy what I did and they were not prepared to help me out. They said it was a scripting issue. I told them the page code is in order and something changed since I enabled the Hotlink Protection. I pleaded with them just to ask an expert and let me know what is going on. They refused outright. They didn't give a stuff.
I looked into my .htaccess file and found the following code was added when the Hotlink Protection was enabled.
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
When I disabled the Hotlink Protection it did not remove the code from the .htaccess files. I then removed the code from all the .htaccess throughout the site manually and everything is working now.
GoDaddy every time you call them now finds every excuse under the sum to persuade you to upgrade the sites resources for extra charges but also always uses the word "might" and never commits to solving any performance issues.
They were once ver helpful and caring. I have found recently a majority of the support are just robots and don't really care about their customers. I will be looking at other alternatives when my hosting plan is up for renewal.
Matthew I understand The Turning Gate has black listed GoDaddy and look forward to your advise on your recommended Hosting company.
I await your referral. Thanks.
Please help.
All images are pulled from from "https://asip.co:443/. TTG seems to put a suffix of :443. It was never a problem however now it is. Godaddy does not help.
No they don't.
Here is the link;
http://shlomo.asip.co
Something strange is happening with Publisher CE4.
After uploading the images and checking if the download image link works the reference file name has a "-" added to the suffix.
I checked it adds a "-" to all the images as well.
I checked the Lightroom Preferences and there is mention a Dash (-) is used to replace illegal fine name characters.
I'm not sure if this is doing it?
Please let me know how I would load up an alternative menu for mobile devices. I suppose this is done via phplugins?
Would you kindly include the necessary code.
Thank you.
Is Woo Commerce plugin compatible to this CE4 WordPress theme?
Here is some information from their site:
https://docs.woocommerce.com/document/t … erceplugin
Thank you
I would like to know if Cart is able to host NAB commerce as an alternative to PayPal?
Thank you Matthew.
I appreciate you providing an easy and effective solution.
It works!
Here is our website built using TTG CE4 plus some 3 party plugins.
Enjoy!
Arnold Szmerling INTL Photographer
I am using TTG CE4 Publisher to upload content for our Contact Page. Is there a way to display alternate content for desktop and mobile viewers?
Thank you, that removed all syntax errors.
Now I just see the code (as text) in the website.
I'm sure it is a simple fix and I am doing something wrong.
Any ideas please?
function ttg_canvas_bottom( $style, $path ) {
echo '
$client_id = "xxx";
$user_id = "xxx";
$url = "https://api.instagram.com/v1/users/".$user_id."/media/recent/?client_id=".$client_id;
$data = file_get_contents($url);
$json = json_decode($data);
$first_photo = $json->data[0];
// Change "standard_resolution" to "thumbnail" or "low_resolution"
$image = $first_photo->images->standard_resolution;
?>
<img src="<?php echo $image->;url; ?>;" alt="" /></pre>
Caption: <php echo $first_photo->caption->;text; ?>;
Created on <?php echo date("F j, Y, g:i a", $first_photo--->created_time); ?>;
User: <?php echo $first_photo->user->;full_name; ?>; (Username <?php echo $first_photo->user->;username; ?>;)
<img src="<?php echo $first_photo->;user->;profile_picture; ?>;" alt="" />
';
return false; // Replaces normal menu
} // END
I am trying to install an Instagram Feed on my website and after some research found the following code to use in php.
I inserted in the PHPlugins as below and have errors - any ideas please?
function ttg_canvas_bottom( $style, $path ) {
echo '
$client_id = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$user_id = 'xxxxxxxxx';
$url = 'https://api.instagram.com/v1/users/'.$user_id.'/media/recent/?client_id='.$client_id;
$data = file_get_contents($url);
$json = json_decode($data);
$first_photo = $json->data[0];
// Change "standard_resolution" to "thumbnail" or "low_resolution"
$image = $first_photo->images->standard_resolution;
?>
<img src="<?php echo $image->;url; ?>;" alt="" /></pre>
Caption: <php echo $first_photo->caption->;text; ?>;
Created on <?php echo date("F j, Y, g:i a", $first_photo--->created_time); ?>;
User: <?php echo $first_photo->user->;full_name; ?>; (Username <?php echo $first_photo->user->;username; ?>;)
<img src="<?php echo $first_photo->;user->;profile_picture; ?>;" alt="" />
';
return false; // Replaces normal menu
} // END