Page 28 of 34 FirstFirst ... 182627282930 ... LastLast
Results 271 to 280 of 332
  1. #271
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Admin-Editable Sidebox - Support Thread

    Quote Originally Posted by yiorgos View Post
    Sorted after messing around a bit with the css.
    ***Off topic post***

    Nice looking site!!!

    Now back to our normal programming.. Carry on..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #272
    Join Date
    May 2010
    Posts
    125
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    Hi I have this installed and working stripeyfrog dot com - sell your books. Now trying to install a second box. But appear to be too stupid to follow what seem like quite simple instructions. So although both boxes are showing they are showing the same content. I have changed my extra definitions/editable_sidebox2_defines file as follows, What am I missing???

    1st parameter
    // e.g. BOX_HEADING_EDITABLE_SIDEBOX_2 or something more memorable if you prefer
    define('BOX_HEADING_EDITABLE_SIDEBOX2', 'Great Companies in Tanzania');

    // If you change the name of the html_include file with the sidebox content, put the new name,
    // without the ",php" suffix between the 2nd set of single quotes below.
    // If you have multiple editable sideboxes, you will also need to change the 1st parameter
    // e.g. DEFINE_EDITABLE_SIDEBOX_NAME_2
    define('DEFINE_EDITABLE_SIDEBOX2', 'define_editable_sidebox2_content');

    ?>

  3. #273
    Join Date
    May 2010
    Posts
    125
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    Solved with a bit of thought - made name changes in the modules file

  4. #274
    Join Date
    Jan 2010
    Posts
    16
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    Hi,

    I have just installed this mod but for some reason it is not showing up on my site.

    You can see when you double click the white space underneath the categories on the left hand side that something is there, but it just doesn't display

    Does anyone have any ideas? I reinstalled it but still nothing. Also, ive set the permission to 755.

    www.firstactionarticles.com/highly_recommended

    Thanks

  5. #275
    Join Date
    Sep 2008
    Posts
    397
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    Questions:

    1. How to change the header's bar color?
    2. Is this the one "@version $Id: blank_sidebox.php 2007-08-10 kuroi $" for change header? Example: good_sidebox.php ? After change this, what other files also need to be changed too?
    3. How to place image instead of just a text headline in sidebox?

    Thanks!

  6. #276
    Join Date
    Sep 2008
    Posts
    220
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    Hi everyone..i have installed this addon but it does not appear on my page when i enable it from my sidebox controller in admin. I have installed it in right template (blue) so the files are there and every update or edit is okey when i do it in the sidebox controller but nothing shows.

    Also i dont see the file in the define pages editor. What am i missing here? I use 1.3.8a.

  7. #277
    Join Date
    May 2011
    Location
    Minnesota
    Posts
    7
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    I installed the Editable Sidebox. It worked great. I want multiple editable sideboxes so I copied each of the 4 files and renamed them ending in a _2. I also changed the items in the editable_sidebox_2_defines.php as the readme file said. It didn't work. I was getting a duplicate sidebox that had the same title and content as the first one. There were a few people in the forum that had the same problem and I wasn't able to find the "answer". I finally figured it out so I wanted to post "the answer" here so others won't have to either give up or take hours to figure it out.

    I will assume that the reader is using "_2" to rename the files. I haven't "added" the CUSTOM/override file name. If you are installing it into your CUSTOM template you will need to change the file names below accordingly.

    Step 1: There are 4 files to COPY and RENAME. They should be:
    1. /languages/english/extra_definitions/editable_sidebox_2_defines.php
    2. /languages/english/html_includes/define_editable_sidebox_2_content.php
    3. /templates/template_default/sideboxes/tpl_editable_sidebox_2.php
    4. /modules/sideboxes/editable_sidebox_2.php


    Step 2: Do as the Readme file says: In languages/english/extra_definitions/editable_sidebox_2_defines.php
    Starting at line 15:
    define('BOX_HEADING_EDITABLE_SIDEBOX_2', 'Insert Your Box Title Here');

    // If you change the name of the html_include file with the sidebox content, put the new name,
    // without the ",php" suffix between the 2nd set of single quotes below.
    // If you have multiple editable sideboxes, you will also need to change the 1st parameter
    // e.g. DEFINE_EDITABLE_SIDEBOX_NAME_2
    define('DEFINE_EDITABLE_SIDEBOX_NAME_2',
    'define_editable_sidebox_2_content');

    Step 3: There are 6 different areas that you need add "_2" to in:
    /modules/sideboxes/editable_sidebox_2.php
    (lines 13 - 19):
    $show_editable_sidebox_2 = true;

    $define_sidebox = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', DEFINE_EDITABLE_SIDEBOX_NAME_2, 'false');

    if ($show_editable_sidebox_2 == true) {
    require($template->get_template_dir('tpl_editable_sidebox_2.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_editable_sidebox_2.php');
    $title = BOX_HEADING_EDITABLE_SIDEBOX_2;
    Step 4 & 5: Remember to customize the header and the content per the readme instructions.

    Step 6: Remember to TURN ON the sidebox in Admin>Tools>Layout Box Controller

    I hope this helps someone!
    Last edited by kuroi; 18 Jun 2011 at 12:23 PM. Reason: Make correction identified by the post author

  8. #278
    Join Date
    Sep 2008
    Posts
    397
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    I successfully installed the Editable Sidebox and worked great.
    I have problem with 2nd sidebox:
    When I turn off the 1st sidebox, the 2nd sidebox also get implicated turn off. I can't find why? I will try harder. If someone can help would be appreciated.

  9. #279
    Join Date
    Sep 2008
    Posts
    397
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    I do not know my problem if relate it with replacing the text that says Blank Sidebox Header? also how to replace it?

  10. #280
    Join Date
    Jul 2011
    Posts
    93
    Plugin Contributions
    0

    Default Re: Admin-Editable Sidebox - Support Thread

    Hi, I cant seem to get this to work. I have followed the instruction for putting this into my custom template and have tripple checked everything.

    The selection does show up in my Layout box controller and it is turned on. On the site it shows the box with the heading with nothing in it. But when I go to the define page editor there is nothing there. The name that I edited it to in the editable_sidebox_defines.php is not there.
    Best Regards,
    Scott
    My test site

 

 
Page 28 of 34 FirstFirst ... 182627282930 ... LastLast

Similar Threads

  1. v154 Blank Sidebox support thread
    By swguy in forum Addon Sideboxes
    Replies: 23
    Last Post: 15 Jul 2021, 09:54 PM
  2. Facebook sidebox -Support Thread
    By neboztik in forum Addon Sideboxes
    Replies: 31
    Last Post: 22 Jan 2013, 03:34 AM
  3. LiveChat Sidebox - Support Thread
    By b.kubiak in forum Addon Sideboxes
    Replies: 13
    Last Post: 15 Mar 2012, 08:00 PM
  4. CampaignMonitor Sidebox Support Thread
    By lukemcr in forum Addon Sideboxes
    Replies: 11
    Last Post: 21 May 2010, 06:14 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR