Forum Replies Created

Viewing 15 replies - 271 through 285 (of 376 total)
  • The idea of RSS is to only show snippets, and link back to the original content.

    Post a query to the person who built the theme. They might know better how the theme is constructed and what is happening.

    http://wpweaver.info/

    Hi Craigh,

    This is what it’s doing, but not looks out of the ordinary why it would be doubling up the posts.

    function weaver_the_content_featured_single($force_featured=false) {
        if (weaver_getopt('ttw_show_featured_image_fullposts') || weaver_is_checked_post_opt('ttw-show-featured') || $force_featured) {
    	?>
    	<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', WEAVER_TRANS ),
    	    the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_post_thumbnail( 'thumbnail-single' ); ?></a>
    	<?php
        }
        the_content();
    }

    So unfortunately I’m at a loss. I’m just speculating about what the problem might be… see if there is anything unusual about your posts, check for duplicates etc.

    Hope you get this sorted.

    hmmm…

    Are you building this list of links manually in a widget?

    If you are auto-generating this list, it may be harder. depending on your familiarity with wordpress/php/javascript, anything is possible.

    If you perhaps used jQuery, you could for example use the first child selector, to apply a specific class to the first link. Then in jQuery you could specify the function/action when a particular link with that class is clicked as you described before. You could use first child as I described, or last child, or nth child, if you know exactly what order your links will appear in.

    Hope this at least helps point you in the right direction.

    Simple jQuery example:

    <script>
        $("div a:first-child").addClass("myfunction");
        $('.myfunction').click(function(e) {
            e.preventDefault(); //stop link default action
            // add code for myfunction
        });
    </script>

    • 1. You shouldn’t be editing core files if at all possible.
    • 2. # being inserted is normal, as the link expects

      <a href="#" onclick="javascript:someFunction()">Your Link</a>

      The # just means you’re not taken away from the current page, and your function is instead executed on clicking

    • 3. You could simply add an empty link

      <a href="#" id="yourid" class"yourclass">Your Link</a>

      and apply a class/ID to it, then use Javascript to target the class/ID and execute that function.

    Esmi is 100% correct, unfortunately.

    Then you’ll have to track down the php file in the theme containing the format for outputting the author, and remove that line. Take a backup in case you break it.

    Look, if you have FTP Access to your webhost where your WordPress is installed, I can help if I can get a look at the code to the functions.php file.

    Awesome, you’re welcome. Kindly mark this as resolved please 🙂

    Do you have the Google Toolbar installed on IE? Nothing is wrong with the Feed, you seem to have a preselected Feed reader set in your browser. Where as you don’t have one setup in Chrome.

    It’s just your personal settings. Mark this as resolved.

    Yes,

    If it is a website that is accessible via the internet, it should be on a server not on your Mac. You should be able to edit it in your WordPress Admin Panel, Appearance > Editor.

    Wow, all I’ll say is wow.

    There is an error at the bottom of the page. Most likely cause by a Plugin.

    Fatal error:Call to undefined method WP_Error::get_items() in /home2/livingq5/public_html/wp-content/plugins/tentblogger-social-widget/tentblogger-social-widget.php on line 160

    Try disabling the Tent Blogger Social Widget plugin, and check your site again.

    This is the code on that page:

    <iframe src="http://www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FTHESISWORKS%2F142584239164763&width=190;height=250&colorscheme=light&show_faces=true&border_color&stream=false&header=true&height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:190px; height:250px;" allowtransparency="true"></iframe>

    First it sets height=250 in the href string, but the last attribute passed is height=62 which obviously is overwriting the previous declaration. This is why your FB box is coming out smaller than expected. If you are using a plugin to generate this box, ensure there is no default setting of 62, else, check your template again.

    Hope this helps.

    I believe that maybe how your browser redirects you for your other site, as I’m not forwarded to Feedburner.

    Send us on your other site. If anything you might have a plugin you are using to do this redirect on your other site.

    Nice site by the way.

    You would have to navigate to the /wp-content/themes/”your theme name”/ and while each theme differs, it should be somewhere in there, not necessarily in index.php. You may need to edit loop.php, or single.php depending.

    Other than that, you could hide this by editing your style.css file.

    Below Line 963, add display: none to the .entry-meta block of CSS.

    .entry-meta {
    color: #899A21;
    font-size: 12px;
    display: none;
    }

    NOTE: This will hide anything across the website that is displayed in the entry-meta div.

Viewing 15 replies - 271 through 285 (of 376 total)