Jump to content

vinnier

Members
  • Posts

    56
  • Joined

  • Last visited

    Never

Everything posted by vinnier

  1. Hi, I want to start an online magazine and as my CMS I've chosen Joomla. I used it before for smaller projects and have never used it to it's fullest... Probably that's why I'm having the problems I need help with. 1) System - Add Keywords plugin; If you look on my website citiherald.com you will straight away see what is the problem. The plugin which generates keywords places an image next to them and makes the text cover the image and it looks bad. How do I stop it from showing the graphic next to the text? 2)CCboard copyright footer; As you can see here: http://www.citiherald.com/index.php?option=com_ccboard&view=forumlist&Itemid=30 The board displays it's own copyright footer, problem is it's about inch above the general footer of my website. How do I move the board footer to the main website footer? I understand I need to remove the board footer and copy it into the template footer, problem is I can't find where the board copyright info is held. 3) Almond Classifieds; You can see here http://www.citiherald.com/index.php?option=com_aclassf&Itemid=53 that the plugin messes with the website main css (compare with citiherald.com) How do I stop it from doing this? 4) How do I get an article rating with each article? Best it to be a 5 star rating system. I tried the built in rating component as well as the one mentioned in the title and nothing happened. Maybe I don't know how to fire it up. Could someone please recommend a system and tell me how to turn it on. Oh, and I want the ratings to be available for everyone even not registered. 5) My question is how to set up Joomla best for magazine; this means that many people from around the world will be publishing so I only want them to be able to ad articles but not be able to administer the site or delete content posted by others. How do I do that? Thanks in advance!
  2. which system would be easiest to customize to be like for example the huffington post?
  3. I want to start an internet magazine and am looking for the best CMS to do that. What I expect is; I want different people from different places to be able to post their articles in their own sections, with captions on the main page, I want them not to be able to edit/delete stuff written by others. I want the script to be able to handle media upload and streaming. I want it to handle multiple categories and be able to handle a few blogs. What should I use? Was thinking about Joomla or Drupal...? Any suggestions welcome.
  4. I was hoping for a little tutorial... How much would it cost for you to do it?
  5. That would be great, how do I do it?
  6. Hi, I need some guidance... I want to make an online directory for tennis academies in my local area. I want businesses to be able to register for a small fee to get a personal website in my domain (tenniscompany.mytenniswebsite.com) which they can personalize to fit their needs. I also want regular users to be able to browse websites of the companies registered and be able to comment on them. I was thinking about using Wordpress MU but can't find a modification that would a) create a directory of registered pages b) make registration possible only after payment I would be grateful for any thoughts and ideas on how to achieve what I need. Thanks in advance!
  7. How do I achieve something like this site has; http://thesecrettogolfsuccess.com/ I want users on my website to be able to download a certain file after giving their email address and for the address to be stored somewhere in db or even txt file.
  8. How do I make for people to register with their email address only and after that be able to access a file for download. I've read about Docman, installed but can't find an option to do that... Any help will be much appreciated.
  9. how come it doesn't work for me? No matter what browser I use I only get a plain text in the corner, like on the pic. There is no bar...
  10. Thanks, but it doesn't seem to work either... It just result in a plain text (i've changed the width value to 50% to be sure) there is no bar :/ [attachment deleted by admin]
  11. there is nothing more on google then the one I tried and it doesn't work...
  12. Thanks for that but it won't do it for me. See I want the bar to be a menu for my site that acts like the facebook statu bar... (scrolls with the website etc)
  13. I am looking for a alternative and simpler way to do it, not a solution the the problem I have with the script I tried. (btw. It makes 3/4 of my site disappear with only header staying in it's place. but it's not important as I am asking for a different way to do it)
  14. How do I achieve a menu that acts like facebook status bar? I tried this http://ryan.rawswift.com/2009/02/15/fixed-that-bar-at-the-bottom-like-facebook/ and it messes up the website completely. Any help please?
  15. Hi all! I am looking for a way to have an extra filed during registration with my Wordpress 2..9.2 Mu. I have tried 2 plugins register pie and register plus and they don't work with the newest WP. I have found this on WP forums: This can be put into functions.php this is simple as it can be <?php // This function shows the form fiend on registration page add_action('register_form','show_first_name_field'); // This is a check to see if you want to make a field required add_action('register_post','check_fields',10,3); // This inserts the data add_action('user_register', 'register_extra_fields'); // This is the forms The Two forms that will be added to the wp register page function show_first_name_field(){ ?> // First Name Field <p> <label>First Name<br /> <input id="user_email" class="input" type="text" tabindex="20" size="25" value="<?php echo $_POST['first']; ?>" name="first"/> </label> </p> // Last Name Fiels <p> <label>Last Name<br /> <input id="user_email" class="input" type="text" tabindex="20" size="25" value="<?php echo $_POST['last']; ?>" name="last"/> </label> </p> <?php } // This function checks to see if they didn't enter them // If no first name or last name display Error function check_fields($login, $email, $errors) { global $firstname, $lastname; if ($_POST['first'] == '') { $errors->add('empty_realname', "<strong>ERROR</strong>: Please Enter in First Name"); } else { $firstname = $_POST['first']; } if ($_POST['last'] == '') { $errors->add('empty_realname', "<strong>ERROR</strong>: Please Enter in Last Name"); } else { $firstname = $_POST['last']; } } // This is where the magiv happens function register_extra_fields($user_id, $password="", $meta=array()) { Gotta put all the info into an array $userdata = array(); $userdata['ID'] = $user_id; // First name $userdata['first_name'] = $_POST['first']; // Last Name $userdata['last_name'] = $_POST['last']; // Enters into DB wp_update_user($userdata); // This is for custom meta data "gender" is the custom key and M is the value // update_usermeta($user_id, 'gender','M'); } ?> Question is how to adapt it to add one field which is not mandatory, sort of promo code if you have one type it in if not leave blank deal... Or is there a better way? Thanks in advance!
  16. Thank you all so very much for help and useful tips!
  17. Done, what is it that it does exactly?
  18. Nightslyr thank you, I thought it was more complicated. Will give it a go.
  19. Got it... This was causing the problem: <table width="100%" border="0" cellspacing="0" cellpadding="2" Removed and it moved up the form
  20. Nightslyr thanks, looks to complicated for me Haku still can't get it right...
  21. Yeah Result: Passed But it's still a mess under IE! ;(
  22. Down to 1 error; strange there is no Line 355 in my file, only 350 lines...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.