Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter bigdanprice

    (@bigdanprice)

    Apologies for the typos – I wrote it on my mobile.

    bigdanprice

    (@bigdanprice)

    Have you had any joy with this?

    I would really like to know the answers to this as well?

    How do you remove the submit listing button? I really dont want the whole world to be able to add a listing…

    Thread Starter bigdanprice

    (@bigdanprice)

    For anyone thats interested… I had a space in my site url… removing it fixed it.

    (I had to go into phpmyadmin, and change the url in the wp options table.)

    Thanks

    Thread Starter bigdanprice

    (@bigdanprice)

    This is the error Im getting:
    Warning: Header may not contain more than a single header, new line detected. in /home/cplpdco/public_html/wp-login.php on line 367

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 754

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 755

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 756

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 757

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 758

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 759

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 762

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 763

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 764

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 765

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 768

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 769

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 770

    Warning: Cannot modify header information – headers already sent by (output started at /home/cplpdco/public_html/wp-login.php:367) in /home/cplpdco/public_html/wp-includes/pluggable.php on line 771

    Amazing… thanks for your help. +100000 to jpmorganjnr

    Have you considered using something like Thematic as a basis and using a child theme…
    Makes using things like conditional content, extremely easy… I would recommend it.
    (Its free as well!)

    You need to find the action hook / create on in your functions.php for your theme…

    What theme are you using?

    Ive had problems with the galleries, but I can reccommend this plugin:

    NextGen Gallery

    You should read up on conditional statements in your functions.php:

    function homepageimage() {
    //then define the action to take:
    if (is_home()) {?>
    //Div goes here
    
    <?php }
    //end action:
    }
    //now we can add our new action to the appropriate place like so:
    add_action('thematic_belowheader', 'homepageimage');

    This is the code I used to place an image above my header… It uses action hooks, in my thematic theme.

    So find your action hook, and use the conditional statement to make it appear…

    Hope this helps.

Viewing 10 replies - 1 through 10 (of 10 total)