Re: Link Manager 3.0 release
Quote:
Originally Posted by
Veronika7747
Thank you!:clap:
Quote:
C. When I click submit, it gives me back the submit link page. Should it bring me to a page saying something like - Your request have been submitted??
Try this fix and see if it corrects this issue:
just unzip the file and upload the entire includes folder to your server.
Attachment 3148
Re: Link Manager 3.0 release
Quote:
Originally Posted by
clydejones
Try this fix and see if it corrects this issue:
just unzip the file and upload the entire includes folder to your server.
Attachment 3148
Oh Clyde you are good! You are chopping down my questions really fast! Thanks again.
Re: Link Manager 3.0 release
Clyde, in which file can I increase the form field properties of the texboxes on the submit link page??
Tx
Re: Link Manager 3.0 release
Quote:
Originally Posted by
Veronika7747
Clyde, in which file can I increase the form field properties of the texboxes on the submit link page??
Tx
includes/templates/YOUR_TEMPLATE/templates/tpl_links_submit_default.php
Re: Link Manager 3.0 release
Quote:
Originally Posted by
clydejones
includes/templates/YOUR_TEMPLATE/templates/tpl_links_submit_default.php
Thanks Clyde, I got it changed but I am having trouble with 2 fields which now don't show http://
Code:
<?php echo zen_draw_input_field('links_reciprocal_url', $name, ' size="40" id="links_reciprocal_url"', 'http://') . ' ' . (zen_not_null(ENTRY_LINKS_RECIPROCAL_URL_TEXT) ? '<span class="alert">' . ENTRY_LINKS_RECIPROCAL_URL_TEXT . '</span>': ''); ?>
what am I doing wrong here??
Veronika
Re: Link Manager 3.0 release
Quote:
Originally Posted by
Veronika7747
Thanks Clyde, I got it changed but I am having trouble with 2 fields which now don't show http://
Code:
<?php echo zen_draw_input_field('links_reciprocal_url', $name, ' size="40" id="links_reciprocal_url"', 'http://') . ' ' . (zen_not_null(ENTRY_LINKS_RECIPROCAL_URL_TEXT) ? '<span class="alert">' . ENTRY_LINKS_RECIPROCAL_URL_TEXT . '</span>': ''); ?>
what am I doing wrong here??
Veronika
Use these:
PHP Code:
<?php echo zen_draw_input_field('links_reciprocal_url', 'http://', 'size="40" id="links_reciprocal_url"') . ' ' . (zen_not_null(ENTRY_LINKS_RECIPROCAL_URL_TEXT) ? '<span class="alert">' . ENTRY_LINKS_RECIPROCAL_URL_TEXT . '</span>': ''); ?>
PHP Code:
<?php echo zen_draw_input_field('links_url', 'http://', 'size="40" id="links_url"') . ' ' . (zen_not_null(ENTRY_LINKS_URL_TEXT) ? '<span class="alert">' . ENTRY_LINKS_URL_TEXT . '</span>': ''); ?>
Re: Link Manager 3.0 release
Clyde,
Just installed your module a few days ago. I having a problem where headings and buttons are coming up as such (ex: TABLE_HEADING_LINKS_TITLE). You can see the live site at http://just4electronics.com, click on "Link Exchange" on the right column to see module. Any help would be appreciated.
*Edit* In addition, I could not locate or turn on the sidebox for your module from Tools>Layout Boxes Controller. It just doesn't appear there at all.
Regards,
Rafael
Re: Link Manager 3.0 release
Quote:
Originally Posted by
felit0
Clyde,
Just installed your module a few days ago. I having a problem where headings and buttons are coming up as such (ex: TABLE_HEADING_LINKS_TITLE). You can see the live site at
http://just4electronics.com, click on "Link Exchange" on the right column to see module. Any help would be appreciated.
*Edit* In addition, I could not locate or turn on the sidebox for your module from Tools>Layout Boxes Controller. It just doesn't appear there at all.
Regards,
Rafael
Looks like you didn't upload the language files and/or change all the YOUR_TEMPLATE folders to match your custom template name.
Re: Link Manager 3.0 release
Thank you very much for the lightning quick response! It was the YOUR_TEMPLATE folders. I didn't realize there was multiple ones, I only changed /includes/templates/YOUR_TEMPLATE initially. You might want to stress that point in your install.txt file. Working flawlessly now :)
Many Thanks!!
Rafael
Re: Link Manager 3.0 release
Quote:
Originally Posted by
felit0
Thank you very much for the lightning quick response! It was the YOUR_TEMPLATE folders. I didn't realize there was multiple ones, I only changed /includes/templates/YOUR_TEMPLATE initially. You might want to stress that point in your install.txt file. Working flawlessly now :)
Many Thanks!!
Rafael
Glad to help.