wpbaxter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can i fix this pagination issue..Bump
Forum: Fixing WordPress
In reply to: How can i fix this pagination issue..Here is the Function page code if required.
<?php /* Template Name: _following */ if (!is_user_logged_in()) { wp_redirect(wp_login_url($_SERVER['REQUEST_URI'])); exit; } ?> <?php get_header(); global $user_ID; ?> <div class="container-fluid mt40"> <?php global $user_ID; $boards = get_user_meta($user_ID, '_Following Board ID'); $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'tax_query' => array( array( 'taxonomy' => 'board', 'field' => 'id', 'terms' => $boards[0], 'include_children' => false ) ), 'paged' => $paged ); query_posts($args); get_template_part('index', 'masonry'); get_footer(); ?>How can i set background image?
can you please add support for background image pattern?Forum: Fixing WordPress
In reply to: How to Get WordPress API Token?@themesumo, i found the token code in one more file bookmarklet.php, can you please take a look at it and let me know if there is something in this file that restricting the plugin to work only on 1 specific domain?
http://snippi.com/s/l4xof8g (Bookmarklet.php)
http://snippi.com/s/8ewe4z6 (Bookmarklet.js)- This reply was modified 9 years, 6 months ago by wpbaxter.
Forum: Fixing WordPress
In reply to: How to Get WordPress API Token?@themesumo : Its alright, i am really glad you are willing to help tough 🙂 i really appreciate that 🙂
Btw can you please take a look at this code, this is the full code for the plugin
http://snippi.com/s/sufk1vcMaybe this will give an idea what that top line is used for and what i need to do in order to make this plugin work on other domains? I am sorry for such noob questions but i am really not familiar with this programming stuffs.
Anyways, i would really appreciate if you take a look and if possible maybe help me a bit further?
P.S. I did change all the domain entries from labs4.imvges.com [old installation] to labs5.imvges.com [new installation] [just thought you might wanna know that i am aware that this needs to be changed too]
Forum: Fixing WordPress
In reply to: How to Get WordPress API Token?@themesumo : its a bookmarklet that fetches data i.e. images from other blogs, its similar to pinterest image bookmarklet.
- This reply was modified 9 years, 6 months ago by wpbaxter.