Jump to content
  • Sign Up

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. You mean ?? On the tables like gr_members table or as the forum folder like gr_forum ??
  2. in the donation settings under manage settings you will find Donation Settings Donation Amounts What donation amounts are available to a donating user?, separate by comma. Enter 0 to disable amount dropdown and let users enter their own amount with a input field. Remove the numbers and enter a zero as it says in the bolded red code.
  3. Modify the 189px in post_controls to 198px and add 2 after the langauge report value.
  4. Do you want it in all forums or just one? In admin panel Look & Feel > Manage Skin Sets & Templates > Manage Templates > Forum View > forumIndexTemplate find this code <if test="showtopics:|:$forum_data['sub_can_post']"> <div class='topic_controls clearfix'> {$forum_data['SHOW_PAGES']} <ul class='topic_buttons'> <if test="usercanpost:|:$forum_data['_user_can_post'] && $this->memberData['posts']>20"> <li><a href='{parse url="module=post&amp;section=post&amp;do=new_post&amp;f={$forum_data['id']}" base="publicWithApp"}' title='{$this->lang->words['topic_start']}' accesskey='s'>{$this->lang->words['topic_start']}</a></li> <else /> <li class='disabled'><span><if test="isGuestPostTopicTop:|: ! $this->memberData['member_id']">{$this->lang->words['forum_no_start_topic_guest']}<else />{$this->lang->words['forum_no_start_topic']}</if></span></li> </if> change to this for all forums and 20 posts . You can make the 20 any number you want 0 or 1 or ??. <if test="showtopics:|:$forum_data['sub_can_post']"> <div class='topic_controls clearfix'> {$forum_data['SHOW_PAGES']} <ul class='topic_buttons'> <if test="usercanpost:|:$forum_data['_user_can_post']"> <li><a href='{parse url="module=post&amp;section=post&amp;do=new_post&amp;f={$forum_data['id']}" base="publicWithApp"}' title='{$this->lang->words['topic_start']}' accesskey='s'>{$this->lang->words['topic_start']}</a></li> <else /> <li class='disabled'><span><if test="isGuestPostTopicTop:|: ! $this->memberData['member_id']">{$this->lang->words['forum_no_start_topic_guest']}<else />{$this->lang->words['forum_no_start_topic']}</if></span></li> </if> change to this for a single forum or a selection of forums to use single forum change array(1,3) to array(1) to add more just add a , then the added forum id like this array(1,3,21) <if test="showtopics:|:$forum_data['sub_can_post']"> <div class='topic_controls clearfix'> {$forum_data['SHOW_PAGES']} <ul class='topic_buttons'> <if test="usercanpost:|:$forum_data['_user_can_post'] && in_array($forum_data['id'],array(1,3)) && $this->memberData['posts']>20"> <li><a href='{parse url="module=post&amp;section=post&amp;do=new_post&amp;f={$forum_data['id']}" base="publicWithApp"}' title='{$this->lang->words['topic_start']}' accesskey='s'>{$this->lang->words['topic_start']}</a></li> <else /> <li class='disabled'><span><if test="isGuestPostTopicTop:|: ! $this->memberData['member_id']">{$this->lang->words['forum_no_start_topic_guest']}<else />{$this->lang->words['forum_no_start_topic']}</if></span></li> </if>
  5. Unfortunately that is a generic message when the real error is not detected. Have you tried other images? If they also do not work than her are some things to look at. Is it an allowed image type for uploading? Is it within the size limits? Is the folder for uploads set to 777?
  6. Ok looks standard userinfopane. So try adding this code just above the final < /div > like this (presuming the member id of site administrator is 1) Change to the correct http address of this special avatar... <if test="$author['member_id']==1"><ul class='custom_fields'><li><img src="address to avatar"></li></ul></if> if you want to do it by groups like root admin (4) and admins (6) use this <if test="in_array($author['member_group_id'],array(4,6))"><ul class='custom_fields'><li><img src="address to avatar"></li></ul></if>
  7. Yes it is just post your userinfopane template in code tag in a spoiler tag and we can help.
  8. In acp > Look & Feel > Template Tools > Rebuild Master Skin Data Choose all boxes on left & right and click rebuild then click rebuild all skins at top of page.
  9. Anything that has i2.wp.com in the address is referring to gravatars. Turn gravatars off in members > profiles in admin panel.
  10. Now that was what I told you in step 3 .. Now that was what I told you in step 3 .. And yours was the correct answer. I will never understand you guys.
  11. Many 3.3 hooks are not compatible with 3.4 Also all 3.3 skins are not compatible with 3.4 .. You can try to remove the app/hook causing the problem and reinstalling after searching if there is an updated version. Do the same for the skin. Search if there is an updated version for 3.4 .. You can also check in skin section the template merge and template tools and try to rebuild the skins ..
  12. First off you errors in the html part. one too many > & < in both lines. <a href="#" class="control_next">></a> <a href="#" class="control_prev"><</a> Where did you get this from? I think you copied it all wrong. Having html body and borders in the css will screw up your skin.
  13. When you say the hooks you install don't work?? What does that mean? What error do you get? Obviously they add the settings to the proper areas. If you want me to look at it, pm me an ftp and admin login and url to your site. If not do not reply to this line.... All set. The files in hooks folder were also the wrong permissions. Now you can install and uninstall the hooks.
  14. Have you checked the hooks folder and made sure the permissions are set to 777??
  15. Are you disabling the hooks before trying to remove them? If you have you can go to acp > System Settings > Hooks > Your hook Click the pencil on right beside hook you want to remove. In the browser url you should see something like this: ldaffiliates.com/admin/index.php?adsess=71a663078c9ed59f9093389a7599999c&app=core&module=applications&section=hooks&do=edit_hook&id=87 The important part is the id number after the red equal sign. You can use phpmyadmin or sql toolbox in acp to do the sql query coming next. (be sure to backup the database or the core_sys_conf_settings & core_sys_settings_titles tables) delete from core_sys_conf_settings where conf_group = 87; delete from core_sys_settings_titles where conf_title_id = 87; The 87 comes from the browser of the hook id you want to remove. If you need help let me know.
  16. The error is probably because you didn't change the skin_global_59 in the file. That 59 represents the skin id number. Try that. It is in all the files I believe.
  17. If you want me to look at it pm me the ipb admin login and ftp login .
  18. I can't think of any. If you know php you could try editing these 2 files: adminskin_cpcp_skin_global.php adminsourcesbaseipsRegistry.php Find the if statements for the logins_over_https and make the ignore the changes to https because of it.
  19. There are 2 value fields in the settings record. Did you set both to 0? (conf_value and conf_default) Also be sure to clear all cookies and cache in your browser.
  20. Try finding the .htaccess file using ftp and rename it to see if you can get it.
  21. Are you trying to modify those fields? Or just read them? You can read them because you did. It shows in the data I had you dump to the file. And you are kidding me. Your answer was the best .. :LOL:
  22. Did you check the output file to see if it ran that function twice and displayed the packages twice? To be sure you are using 2 different packages and not the same package with 2 items?!
×
×
  • Create New...