Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter marcqs

    (@marcqs)

    Sorry, the mistake was mine. I was calling the function in the wrong way in the template. I assumed that if the name of the new function was “my_epl_property_inspection_times”, I had to call it in the temple as “do_action(‘my_epl_property_inspection_times’)”.

    Thanks for developing one of the best WordPress plugins for real estate.

    Daniel, thanks for pointing to that. I’ll try the option to see what happens.

    I received something similar from Inmotion:

    “From limited research we noted that part of your site appears to use larger amounts of system cpu and memory than is normally allowed. Issues like this can be caused by abnormally high concurrent traffic to specific parts of the site, or by a script that is perhaps not optimized for more aggressive use.

    From what we could see, the portion of your site causing the issue was: …/public_html/wp-cron.php”.

    The message did not specifically mention backwpup, but when I disable the plugin the website began to work properly.

    Is there any way to schedule a backup without wordpress cron?

    Something like this:

    `wp_nav_menu( array( ‘items_wrap’ => ‘<ul class=”sf-menu”>%3$s’ ) );

    I also like to know the answer to the question asked by WendyBee.

    Forum: Plugins
    In reply to: Problem with Coauthors

    Take a look at this thread, because a had the same question.

    Forum: Plugins
    In reply to: Problem with Coauthors

    Totally. Works great. This helps me get a better understanding of the plugin to do other things. Thanks for your time and support.

    Forum: Plugins
    In reply to: Problem with Coauthors

    Hello. I would like put the link for each author’s archive after author’s bio in a similar way as does twenty eleven theme.

    Author 1
    Description
    View all posts by Author 1

    Author 2
    Description
    View all posts by Author 2

    For this I used a code similar to that showed by Daniel. I show the sample code that works fine so far (the modification is made ??in content.single.php template):

    <div id="author-info">
    	<?php
    	$coauthors = get_coauthors(); ?>
    	<?php foreach( $coauthors as $coauthor ): ?>
    	<div class="author-description">
    	<?php $userdata = get_userdata( $coauthor->ID ); ?>
    		<h2><?php if ( $userdata->display_name ) echo $userdata->display_name; ?></h2>
    <		?php if ( $userdata->user_description ) echo $userdata->user_description; ?>
    </div>

    What I want to do now is put the link to the archive of each author. My question is: there is a better way to do this or how can this be done by adding something extra at the end of the code above? Thanks in advance for the help you can give me.

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