Advertisement:

Author Topic: (RESOLVED) Move Contact Publisher Box Below Actual Ad &  (Read 1452 times)

ashish1241

  • Jr. Member
  • **
  • Posts: 59
Is it possible to move the Contact publisher Box Horizontally below the Actual Ad rather than having it Sidebar.
Detailed Help would highly appreciated
Please see this url: http://in.cityehub.com/real-estate/hotels/advertise-your-hotel-here_72 for understanding how it has moved down to the bottom in the sidebar.

« Last Edit: May 29, 2015, 09:55:18 pm by ashish1241 »

ashish1241

  • Jr. Member
  • **
  • Posts: 59
Re: Move Contact Publisher Box Below Actual Ad &
« Reply #1 on: May 28, 2015, 11:41:33 am »
Anyone, who can throw some light on this?

teseo

  • Hero Member
  • *****
  • Posts: 6169
Re: Move Contact Publisher Box Below Actual Ad &
« Reply #2 on: May 28, 2015, 01:37:39 pm »
Hi,

This is the contact block in bender/item-sidebar.php:

Code: [Select]
    <div id="contact" class="widget-box form-container form-vertical">
        <h2><?php _e("Contact publisher"'bender'); ?></h2>
        <?php if( osc_item_is_expired () ) { ?>
            <p>
                <?php _e("The listing is expired. You can't contact the publisher."'bender'); ?>
            </p>
        <?php } else if( ( osc_logged_user_id() == osc_item_user_id() ) && osc_logged_user_id() != ) { ?>
            <p>
                <?php _e("It's your own listing, you can't contact the publisher."'bender'); ?>
            </p>
        <?php } else if( osc_reg_user_can_contact() && !osc_is_web_user_logged_in() ) { ?>
            <p>
                <?php _e("You must log in or register a new account in order to contact the advertiser"'bender'); ?>
            </p>
            <p class="contact_button">
                <strong><a href="<?php echo osc_user_login_url(); ?>"><?php _e('Login''bender'); ?></a></strong>
                <strong><a href="<?php echo osc_register_account_url(); ?>"><?php _e('Register for a free account''bender'); ?></a></strong>
            </p>
        <?php } else { ?>
            <?php if( osc_item_user_id() != null ) { ?>
                <p class="name"><?php _e('Name''bender'?>: <a href="<?php echo osc_user_public_profile_urlosc_item_user_id() ); ?>" ><?php echo osc_item_contact_name(); ?></a></p>
            <?php } else { ?>
                <p class="name"><?php printf(__('Name: %s''bender'), osc_item_contact_name()); ?></p>
            <?php ?>
            <?php if( osc_item_show_email() ) { ?>
                <p class="email"><?php printf(__('E-mail: %s''bender'), osc_item_contact_email()); ?></p>
            <?php ?>
            <?php if ( osc_user_phone() != '' ) { ?>
                <p class="phone"><?php printf(__("Phone: %s"'bender'), osc_user_phone()); ?></p>
            <?php ?>
            <ul id="error_list"></ul>
            <form action="<?php echo osc_base_url(true); ?>" method="post" name="contact_form" id="contact_form" <?php if(osc_item_attachment()) { echo 'enctype="multipart/form-data"'; };?> >
                <?php osc_prepare_user_info(); ?>
                 <input type="hidden" name="action" value="contact_post" />
                    <input type="hidden" name="page" value="item" />
                    <input type="hidden" name="id" value="<?php echo osc_item_id(); ?>" />
                <div class="control-group">
                    <label class="control-label" for="yourName"><?php _e('Your name''bender'); ?>:</label>
                    <div class="controls"><?php ContactForm::your_name(); ?></div>
                </div>
                <div class="control-group">
                    <label class="control-label" for="yourEmail"><?php _e('Your e-mail address''bender'); ?>:</label>
                    <div class="controls"><?php ContactForm::your_email(); ?></div>
                </div>
                <div class="control-group">
                    <label class="control-label" for="phoneNumber"><?php _e('Phone number''bender'); ?> (<?php _e('optional''bender'); ?>):</label>
                    <div class="controls"><?php ContactForm::your_phone_number(); ?></div>
                </div>

                <div class="control-group">
                    <label class="control-label" for="message"><?php _e('Message''bender'); ?>:</label>
                    <div class="controls textarea"><?php ContactForm::your_message(); ?></div>
                </div>

                <?php if(osc_item_attachment()) { ?>
                    <div class="control-group">
                        <label class="control-label" for="attachment"><?php _e('Attachment''bender'); ?>:</label>
                        <div class="controls"><?php ContactForm::your_attachment(); ?></div>
                    </div>
                <?php }; ?>

                <div class="control-group">
                    <div class="controls">
                        <?php osc_run_hook('item_contact_form'osc_item_id()); ?>
                        <?php if( osc_recaptcha_public_key() ) { ?>
                        <script type="text/javascript">
                            var RecaptchaOptions = {
                                theme : 'custom',
                                custom_theme_widget: 'recaptcha_widget'
                            };
                        </script>
                        <style type="text/css"> div#recaptcha_widget, div#recaptcha_image > img { width:280px; } </style>
                        <div id="recaptcha_widget">
                            <div id="recaptcha_image"><img /></div>
                            <span class="recaptcha_only_if_image"><?php _e('Enter the words above','bender'); ?>:</span>
                            <input type="text" id="recaptcha_response_field" name="recaptcha_response_field" />
                            <div><a href="javascript:Recaptcha.showhelp()"><?php _e('Help''bender'); ?></a></div>
                        </div>
                        <?php ?>
                        <?php osc_show_recaptcha(); ?>
                        <button type="submit" class="ui-button ui-button-middle ui-button-main"><?php _e("Send"'bender');?></button>
                    </div>
                </div>
            </form>
            <?php ContactForm::js_validation(); ?>
        <?php ?>
    </div>

You can move it from there to item.php (insert it just above <div id="useful_info" class="bordered-box">)

Regards

ashish1241

  • Jr. Member
  • **
  • Posts: 59
Re: (RESOLVED) Move Contact Publisher Box Below Actual Ad &
« Reply #3 on: May 29, 2015, 09:55:39 pm »
Thank You  :) :) :) :) :)