Search:

Search: Search took 1.00 seconds.

  1. Hi, When you have created your custom fields,...

    Hi,

    When you have created your custom fields, ad code similar like this in the location where you want to output your custom field data.


    <?php // Get the relevant values
    ...
  2. Replies
    232
    Views
    16,845

    The problem is that not everyone keeps tabs as...

    The problem is that not everyone keeps tabs as close as you do to understand where their online business from, for a lot of business owner it's simply coming from "the internet", they are clueless...
  3. Replies
    232
    Views
    16,845

    I'm sorry, but you're overlooking something here,...

    I'm sorry, but you're overlooking something here, and that is the concept of optimizing your cash flow, that is how online business works!
    With your logic you will lose money no matter how you slice...
  4. Replies
    13
    Views
    1,154

    archive-listing.php

    archive-listing.php
  5. Thread: Plan Page Format

    by edwin
    Replies
    1
    Views
    292

    We can't see that page as that is a order...

    We can't see that page as that is a order specific page that will only be shown to the person that is logged in and that has been cookied.
    Maybe you can post a screenshot combined with your CSS code...
  6. That code goes into the location where you want...

    That code goes into the location where you want your banner to appear.
    sidebar-single-listing.php is the file used for the sidebar that shows on the listing pages.
  7. Replies
    3
    Views
    565

    I've done a similar customization and I used this...

    I've done a similar customization and I used this code to have the content display only on the home page.


    <?php
    $homepage = "/";
    $currentpage = $_SERVER['REQUEST_URI'];
    ...
  8. How To Instruction: Prevent Users Seeing WordPress Admin Area

    Here is a little code snippet you can drop in your functions.php file.


    add_action('admin_init', 'no_mo_dashboard');

    function no_mo_dashboard() {

    if (!current_user_can('manage_options')...
  9. Replies
    7
    Views
    456

    Use this...

    Use this instead.

    Easy to set up.

    Add this where you want your map to appear:


    <?php
    ob_start();
    get_template_part("mapcode");
  10. How To Instruction: Output Your Listing Tags In an Unordered List.

    A quick tip for Vantage modders that would like to output the Listing Tags in an unordered list for more output control.



    <?php
    echo '<ul class="tags">';
    echo get_the_term_list( $post->ID,...
  11. Replies
    7
    Views
    545

    Yeah, no problem at all, you can just remove it....

    Yeah, no problem at all, you can just remove it.



    Apply the same css method for this element in your css stylesheet, adding display:none;
  12. Replies
    5
    Views
    794

    Try this plugin:...

    Try this plugin: http://wordpress.org/extend/plugins/wp-htaccess-control/

    Check the checkbox in the "Remove Listing Categories Base" in the Remove Taxonomies and Author Base panel.

    And just...
  13. [SOLVED] Hi Dimitris, Check out this paragraph taken...

    Hi Dimitris,

    Check out this paragraph taken from this page here.



    How can an email be send if there is no email provided in the import?
  14. Thanks Paul! - Send you a little beer money...

    Thanks Paul! - Send you a little beer money contribution as well.
  15. Replies
    13
    Views
    2,089

    You would need to add this line of code:

    You would need to add this line of code:

    <a href="<?php echo wp_logout_url(); ?>" class="mbtn btn_orange"><?php _e('Log Out', 'appthemes') ?></a>

    In your sidebar.php file under this line of...
  16. Replies
    11
    Views
    1,497

    No problem, this is a solution I picked up from...

    No problem, this is a solution I picked up from this site.
  17. Replies
    11
    Views
    1,497

    Hi Luke, Try adding this to your...

    Hi Luke,

    Try adding this to your theme-functions.php file:



    // Show something after a number of entries in loop
    function insert_between_posts($post) {
    global $wp_query;
Results 1 to 17 of 17