Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
clydejones
You need to define this (META_TAG_TITLE_DISPLAY_ALL_TESTIMONIALS) in includes/languages/YOUR_TEMPLATE/meta-tags.php (around line(s) 38 - 40)
// Per-Page meta-tags. Follow this pattern for individual pages you wish to override. This is useful mainly for additional pages.
// replace "page_name" with the UPPERCASE name of your main_page= value, such as ABOUT_US or SHIPPINGINFO etc.
// repeat pattern as necessary
define('META_TAG_DESCRIPTION_page_name','');
define('META_TAG_KEYWORDS_page_name','');
define('META_TAG_TITLE_page_name', '');
you mean includes/modules/blah blah, right? not languages? also this ain't in the instructions.
can i wait until version xxx comes out. i have no clue what you just said, i still have alot to learn. i'm trying to learn a bunch of other stuff at the same time and my brain is being fried.
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
willie bee
you mean includes/modules/blah blah, right? not languages? also this ain't in the instructions.
can i wait until version xxx comes out. i have no clue what you just said, i still have alot to learn. i'm trying to learn a bunch of other stuff at the same time and my brain is being fried.
Please refer to posts 1226 - 1231 concerning adding meta tags.
Re: Testimonial Manager Support Thread
I have been using this to display random facts for over a year now. The client has requested a new site design, and there has been an update to the testimonial manager code.
The new site design does not use actual sideboxes; the items on the left column are hard coded into the template.
I would like to randomly display the facts as before, but I'm not sure what to include in my template.
the site is here:
http://biadchili.com/pepper/
the 'all testimonials page' is here:
http://biadchili.com/pepper/index.ph...l_testimonials
I actually do not want to display everything, just have them randomly displayed on the left column; the sideboxes are turned on
this is the code I've used to display this on the left column, but it is not showing:
PHP Code:
<?php require($template->get_template_dir('tpl_testimonials_manager_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_testimonials_manager_default.php');
?>
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
tamalita
I have been using this to display random facts for over a year now. The client has requested a new site design, and there has been an update to the testimonial manager code.
The new site design does not use actual sideboxes; the items on the left column are hard coded into the template.
I would like to randomly display the facts as before, but I'm not sure what to include in my template.
the site is here:
http://biadchili.com/pepper/
the 'all testimonials page' is here:
http://biadchili.com/pepper/index.ph...l_testimonials
I actually do not want to display everything, just have them randomly displayed on the left column; the sideboxes are turned on
this is the code I've used to display this on the left column, but it is not showing:
PHP Code:
<?php require($template->get_template_dir('tpl_testimonials_manager_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_testimonials_manager_default.php');
?>
Your going to need to figure out how to combine the code from:
includes/modules/sideboxes/YOUR_TEMPLATE/testimonials_manager.php
AND
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
willie bee
you mean includes/modules/blah blah, right? not languages? also this ain't in the instructions.
can i wait until version xxx comes out. i have no clue what you just said, i still have alot to learn. i'm trying to learn a bunch of other stuff at the same time and my brain is being fried.
willie bee
edit this file
/includes/languages/english/CUSTOM_TEMPLATE/meta_tags.php
In the // Per-Page meta-tags section
make the tags look like this
PHP Code:
define('META_TAG_DESCRIPTION_page_name','');
define('META_TAG_KEYWORDS_PAGE_page_name','');
define('META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS', '');
define('META_TAG_DESCRIPTION_page_name','');
define('META_TAG_KEYWORDS_PAGE_page_name','');
define('META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER', '');
See if this gets working going for you.
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
clydejones
Your going to need to figure out how to combine the code from:
includes/modules/sideboxes/YOUR_TEMPLATE/testimonials_manager.php
AND
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php
that's what I needed to know ... thank you!
Re: Testimonial Manager Support Thread
Version 1.3.8a.
I've installed your add-on. Everything went smoothly and works except for the "Add a Testimonial" link. Only a blank white screen appears whether I click on the link from the sidebox or from a page while viewing another testimonial.
I've double-checked that I've uploaded all the files to the appropriate locations on my server.
Which files would affect this issue? Any suggestions would be greatly appreciated!
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
HighCastleCrafts
Version 1.3.8a.
I've installed your add-on. Everything went smoothly and works except for the "Add a Testimonial" link. Only a blank white screen appears whether I click on the link from the sidebox or from a page while viewing another testimonial.
I've double-checked that I've uploaded all the files to the appropriate locations on my server.
Which files would affect this issue? Any suggestions would be greatly appreciated!
double check and make sure ALL the following have been uploaded to your server:
includes/extra_datafiles/testimonials_manager_filenames.php
includes/functions/testimonials.php
includes/languages/english/extra_definitions/YOUR_TEMPLATE/testimonials_manager_defines.php
includes/languages/english/YOUR_TEMPLATE/testimonials_add.php
includes/languages/english/YOUR_TEMPLATE/testimonials_manager.php
includes/languages/english/YOUR_TEMPLATE/testimonials_manager_all_testimonials.php
includes/languages/english/html_includes/define_testimonials_add.php
includes/languages/english/html_includes/YOUR_TEMPLATE/define_testimonials_add.php
includes/modules/pages/testimonials_add
includes/modules/pages/testimonials_manager
includes/modules/pages/display_all_testimonials
includes/modules/sideboxes/YOUR_TEMPLATE/testimonials_manager.php
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_default.php
includes/templates/YOUR_TEMPLATE/css/testimonials_add.css
includes/templates/YOUR_TEMPLATE/css/testimonials_manager.css
includes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css
includes/templates/YOUR_TEMPLATE/buttons/english/button_submit_testimonials.gif
includes/templates/YOUR_TEMPLATE/buttons/english/button_testimonials.gif
includes/templates/YOUR_TEMPLATE/buttons/english/button_view_testimonials.gif
Re: Testimonial Manager Support Thread
Quote:
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_default.php
includes/templates/YOUR_TEMPLATE/css/testimonials_add.css
includes/templates/YOUR_TEMPLATE/css/testimonials_manager.css
includes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css
There are two differences between the names of the files I downloaded and what you listed above. The download included:
includes/templates/YOUR_TEMPLATE/templates/tpl_display_all_testimonials_default
instead ofincludes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
(The other two files are the same in that folder.)
AND
includes/templates/YOUR_TEMPLATE/css/display_all_testimonials
instead ofincludes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css
I also noticed when the cursors hovers over the "Add A Testimonial" link that the following appears at the bottom of the window:
/index.php?main_page=testimonials_add&zenid951779c1ebbfbb
What's the "&zenid951779c1ebbfbb"?
Thanks.
Re: Testimonial Manager Support Thread
Quote:
Originally Posted by
HighCastleCrafts
There are two differences between the names of the files I downloaded and what you listed above. The download included:
includes/templates/YOUR_TEMPLATE/templates/tpl_display_all_testimonials_default
instead ofincludes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
(The other two files are the same in that folder.)
AND
includes/templates/YOUR_TEMPLATE/css/display_all_testimonials
instead ofincludes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css
I also noticed when the cursors hovers over the "Add A Testimonial" link that the following appears at the bottom of the window:
/index.php?main_page=testimonials_add&zenid951779c1ebbfbb
What's the "&zenid951779c1ebbfbb"?
Thanks.
You can delete these.
includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
includes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css
----------
zenid is your session id and will display the first time you go to that page but will not display afterwards.