Title: Dashnorth's Replies | WordPress.org

---

# Dashnorth

  [  ](https://wordpress.org/support/users/dashnorth/)

 *   [Profile](https://wordpress.org/support/users/dashnorth/)
 *   [Topics Started](https://wordpress.org/support/users/dashnorth/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dashnorth/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dashnorth/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dashnorth/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dashnorth/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dashnorth/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enhanced Category Pages] Image only URL without HTML](https://wordpress.org/support/topic/image-only-url-without-html/)
 *  Thread Starter [Dashnorth](https://wordpress.org/support/users/dashnorth/)
 * (@dashnorth)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/image-only-url-without-html/#post-8231943)
 * never mind. figure it out.
 *     ```
       <?php 
       $banner_img = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' );
   
       echo $banner_img[0]; // returns only the url of the full image.
       ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enhanced Category Pages] Image only URL without HTML](https://wordpress.org/support/topic/image-only-url-without-html/)
 *  Thread Starter [Dashnorth](https://wordpress.org/support/users/dashnorth/)
 * (@dashnorth)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/image-only-url-without-html/#post-8231951)
 * btw. I don’t know why but I’m not able to display the content of the category
   by using this:
 *     ```
       <?php
           global $enhanced_category;
           //get enhanced category post and set it up as global current post
           $enhanced_category->setup_ec_data();
       ?>
       <!-- enhanced category content -->
       <?php the_post_thumbnail("medium"); ?>
   
       <?php get_template_part( 'content', 'page' ); ?>
   
       <!-- custom fields -->
       <?php
           get_post_custom();
       ?>
   
       <?php
           // If comments are open or we have at least one comment, load up the comment template
           if ( comments_open() || get_comments_number() ) :
               comments_template();
           endif;
       ?>
       ```
   
 * instead I had to include() the `content-ecp.php` file directly, and it’s now 
   working.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Analytics Post Pageviews] No Cache Saved in DB](https://wordpress.org/support/topic/no-cache-saved-in-db/)
 *  Thread Starter [Dashnorth](https://wordpress.org/support/users/dashnorth/)
 * (@dashnorth)
 * [11 years ago](https://wordpress.org/support/topic/no-cache-saved-in-db/#post-5981426)
 * [@totels](https://wordpress.org/support/users/totels/) wow!! thank you so much
   for this one! I’m going to implement it later today and see how it goes. If it’s
   not a problem for you I’d like to see the code you mentioned about the disconnection.
 * P.s. I think this must be added in the plugin itself. And maybe think of another
   way to cache the results, as fallback..
 * thank you totels.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Analytics Post Pageviews] No Cache Saved in DB](https://wordpress.org/support/topic/no-cache-saved-in-db/)
 *  Thread Starter [Dashnorth](https://wordpress.org/support/users/dashnorth/)
 * (@dashnorth)
 * [11 years ago](https://wordpress.org/support/topic/no-cache-saved-in-db/#post-5981392)
 * it’s still not working for me… nothing saved in db even after the last update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Analytics Post Pageviews] No Cache Saved in DB](https://wordpress.org/support/topic/no-cache-saved-in-db/)
 *  Thread Starter [Dashnorth](https://wordpress.org/support/users/dashnorth/)
 * (@dashnorth)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/no-cache-saved-in-db/#post-5981022)
 * Reason why transient isn’t saved in DB might be because of [Memcache](http://journal.ryanmccue.info/296/youre-using-transients-wrong/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Analytics Post Pageviews] No Cache Saved in DB](https://wordpress.org/support/topic/no-cache-saved-in-db/)
 *  Thread Starter [Dashnorth](https://wordpress.org/support/users/dashnorth/)
 * (@dashnorth)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/no-cache-saved-in-db/#post-5981013)
 * I’ve also noticed [in your code](http://i.imgur.com/PzXQWvD.png) for the “clear
   cache option” that you assume everybody has as a table prefix `wp_` for example
   I don’t have `wp_options` but `cc666_options`

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