conceptualcreative
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Media library won't loadI think they are the permissions on the folder content -> upload
Forum: Fixing WordPress
In reply to: Problem with categoryHere I show you the code of category.php
<?php /** * The template for displaying Category pages. * * Learn more: https://codex.www.ads-software.com/Template_Hierarchy * * @package WordPress * @subpackage FlatAds * @since FlatAds 1.0 */ get_header(); global $redux_demo, $maximRange; $max_range = $redux_demo['max_range']; if(!empty($max_range)) { $maximRange = $max_range; } else { $maximRange = 1000; } ?> <section id="category-featured-ads-title"> <div class="container"> <?php $cat_id = get_cat_ID(single_cat_title('', false)); $this_category = get_category($cat); if ($this_category->category_parent == 0) { $tag = $cat_id; $tag_extra_fields = get_option(MY_CATEGORY_FIELDS); if (isset($tag_extra_fields[$tag])) { $category_icon_code = $tag_extra_fields[$tag]['category_icon_code']; $category_icon_color = $tag_extra_fields[$tag]['category_icon_color']; } } else { $parent_category = get_category($this_category->category_parent); $getParentCatId = $parent_category->cat_ID; $tag_extra_fields = get_option(MY_CATEGORY_FIELDS); if (isset($tag_extra_fields[$getParentCatId])) { $category_icon_code = $tag_extra_fields[$getParentCatId]['category_icon_code']; $category_icon_color = $tag_extra_fields[$getParentCatId]['category_icon_color']; } } if(!empty($category_icon_code)) { ?> <div class="category-icon-box" style="background-color: <?php echo $category_icon_color; ?>;"><?php $category_icon = stripslashes($category_icon_code); echo $category_icon; ?></div> <?php } ?> <?php $cat_id = get_cat_ID(single_cat_title('', false)); $cat_parent_ID = isset( $cat_id->category_parent ) ? $cat_id->category_parent : ''; if ($cat_parent_ID == 0) { $tag = $cat_id; } else { $tag = $cat_parent_ID; } $category = get_category($tag); $count = $category->category_count; $catName = get_cat_name( $tag ); echo '<h2>'; echo $catName; echo '</h2>'; ?> <span class="category-featured-total-ads"><h2> <?php $q = new WP_Query( array( 'nopaging' => true, 'tax_query' => array( array( 'taxonomy' => 'category', 'field' => 'id', 'terms' => $tag, 'include_children' => true, ), ), 'fields' => 'ids', ) ); $allPosts = $q->post_count; echo $allPosts; ?> ads in <?php $args = array( 'type' => 'post', 'child_of' => $tag, 'parent' => get_query_var(''), 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => 0, 'hierarchical' => 1, 'exclude' => '', 'include' => '', 'number' => '', 'taxonomy' => 'category', 'pad_counts' => true ); $categories = get_categories($args); $subCateCount = 0; foreach($categories as $category) { $subCateCount++; } echo $subCateCount; ?> subcategories </h2></span> </div> </section> <section id="big-map"> <div id="flatads-main-map"></div> <script type="text/javascript"> var mapDiv, map, infobox; jQuery(document).ready(function($) { mapDiv = $("#flatads-main-map"); mapDiv.height(500).gmap3({ map: { options: { "draggable": true ,"mapTypeControl": true ,"mapTypeId": google.maps.MapTypeId.ROADMAP ,"scrollwheel": false ,"panControl": true ,"rotateControl": false ,"scaleControl": true ,"streetViewControl": true ,"zoomControl": true <?php global $redux_demo; $map_style = $redux_demo['map-style']; if(!empty($map_style)) { ?>,"styles": <?php echo $map_style; ?> <?php } ?> } } ,marker: { values: [ <?php $wp_query= null; $wp_query = new WP_Query(); $category_id = get_cat_ID($catName); $wp_query->query('post_type=post&posts_per_page=-1&cat='.$category_id); while ($wp_query->have_posts()) : $wp_query->the_post(); $post_latitude = get_post_meta($post->ID, 'post_latitude', true); $post_longitude = get_post_meta($post->ID, 'post_longitude', true); $theTitle = get_the_title(); $theTitle = (strlen($theTitle) > 40) ? substr($theTitle,0,37).'...' : $theTitle; $post_price = get_post_meta($post->ID, 'post_price', true); $category = get_the_category(); if ($category[0]->category_parent == 0) { $tag = $category[0]->cat_ID; $tag_extra_fields = get_option(MY_CATEGORY_FIELDS); if (isset($tag_extra_fields[$tag])) { $your_image_url = $tag_extra_fields[$tag]['your_image_url']; //i added this line. } } else { $tag = $category[0]->category_parent; $tag_extra_fields = get_option(MY_CATEGORY_FIELDS); if (isset($tag_extra_fields[$tag])) { $your_image_url = $tag_extra_fields[$tag]['your_image_url']; //i added this line. } } if(!empty($your_image_url)) { $iconPath = $your_image_url; } else { $iconPath = get_template_directory_uri() .'/images/icon-services.png'; } if(!empty($post_latitude)) {?> { <?php require_once(TEMPLATEPATH . "/inc/BFI_Thumb.php"); ?> <?php $params = array( "width" => 230, "height" => 150, "crop" => true ); $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), "single-post-thumbnail" ); ?> latLng: [<?php echo $post_latitude; ?>,<?php echo $post_longitude; ?>], options: { icon: "<?php echo $iconPath; ?>", shadow: "<?php echo get_template_directory_uri() ?>/images/shadow.png", }, data: '<div class="marker-holder"><div class="marker-content"><div class="marker-image"><img src="<?php echo bfi_thumb( "$image[0]", $params ) ?>" /></div><div class="marker-info-holder"><div class="marker-info"><div class="marker-info-title"><?php echo $theTitle; ?></div><div class="marker-info-extra"><div class="marker-info-price"><?php echo $post_price; ?></div><div class="marker-info-link"><a href="<?php the_permalink(); ?>"><?php _e( "Details", "agrg" ); ?></a></div></div></div></div><div class="arrow-down"></div><div class="close"></div></div></div>' } , <?php } endwhile; ?> <?php wp_reset_query(); ?> ], options:{ draggable: false }, cluster:{ radius: 20, // This style will be used for clusters with more than 0 markers 0: { content: "<div class='cluster cluster-1'>CLUSTER_COUNT</div>", width: 62, height: 62 }, // This style will be used for clusters with more than 20 markers 20: { content: "<div class='cluster cluster-2'>CLUSTER_COUNT</div>", width: 82, height: 82 }, // This style will be used for clusters with more than 50 markers 50: { content: "<div class='cluster cluster-3'>CLUSTER_COUNT</div>", width: 102, height: 102 }, events: { click: function(cluster) { map.panTo(cluster.main.getPosition()); map.setZoom(map.getZoom() + 2); } } }, events: { click: function(marker, event, context){ map.panTo(marker.getPosition()); var ibOptions = { pixelOffset: new google.maps.Size(-125, -88), alignBottom: true }; infobox.setOptions(ibOptions) infobox.setContent(context.data); infobox.open(map,marker); // if map is small var iWidth = 260; var iHeight = 300; if((mapDiv.width() / 2) < iWidth ){ var offsetX = iWidth - (mapDiv.width() / 2); map.panBy(offsetX,0); } if((mapDiv.height() / 2) < iHeight ){ var offsetY = -(iHeight - (mapDiv.height() / 2)); map.panBy(0,offsetY); } } } } },"autofit"); map = mapDiv.gmap3("get"); infobox = new InfoBox({ pixelOffset: new google.maps.Size(-50, -65), closeBoxURL: '', enableEventPropagation: true }); mapDiv.delegate('.infoBox .close','click',function () { infobox.close(); }); if (Modernizr.touch){ map.setOptions({ draggable : false }); var draggableClass = 'inactive'; var draggableTitle = "Activate map"; var draggableButton = $('<div class="draggable-toggle-button '+draggableClass+'">'+draggableTitle+'</div>').appendTo(mapDiv); draggableButton.click(function () { if($(this).hasClass('active')){ $(this).removeClass('active').addClass('inactive').text("Activate map"); map.setOptions({ draggable : false }); } else { $(this).removeClass('inactive').addClass('active').text("Deactivate map"); map.setOptions({ draggable : true }); } }); } jQuery( "#advance-search-slider" ).slider({ range: "min", value: 500, min: 1, max: <?php echo $maximRange; ?>, slide: function( event, ui ) { jQuery( "#geo-radius" ).val( ui.value ); jQuery( "#geo-radius-search" ).val( ui.value ); jQuery( ".geo-location-switch" ).removeClass("off"); jQuery( ".geo-location-switch" ).addClass("on"); jQuery( "#geo-location" ).val("on"); mapDiv.gmap3({ getgeoloc:{ callback : function(latLng){ if (latLng){ jQuery('#geo-search-lat').val(latLng.lat()); jQuery('#geo-search-lng').val(latLng.lng()); } } } }); } }); jQuery( "#geo-radius" ).val( jQuery( "#advance-search-slider" ).slider( "value" ) ); jQuery( "#geo-radius-search" ).val( jQuery( "#advance-search-slider" ).slider( "value" ) ); jQuery('.geo-location-button .fa').click(function() { if(jQuery('.geo-location-switch').hasClass('off')) { jQuery( ".geo-location-switch" ).removeClass("off"); jQuery( ".geo-location-switch" ).addClass("on"); jQuery( "#geo-location" ).val("on"); mapDiv.gmap3({ getgeoloc:{ callback : function(latLng){ if (latLng){ jQuery('#geo-search-lat').val(latLng.lat()); jQuery('#geo-search-lng').val(latLng.lng()); } } } }); } else { jQuery( ".geo-location-switch" ).removeClass("on"); jQuery( ".geo-location-switch" ).addClass("off"); jQuery( "#geo-location" ).val("off"); } }); }); </script> <?php global $redux_demo; $header_version = $redux_demo['header-version']; ?> <?php if($header_version == 1) { ?> <div id="advanced-search-widget"> <div class="container"> <div class="advanced-search-widget-content"> <div class="advanced-search-title"> <?php _e( 'Search around my position', 'agrg' ); ?> </div> <div class="advanced-search-slider"> <div class="geo-location-button"> <div class="geo-location-switch off"><i class="fa fa-location-arrow"></i></div> </div> <div id="advance-search-slider" class="value-slider ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all" aria-disabled="false"> <a class="ui-slider-handle ui-state-default ui-corner-all" href="#"> <span class="range-pin"> <input type="text" name="geo-radius" id="geo-radius" value="100" data-default-value="100"> </span> </a> </div> </div> </div> </div> </div> <?php } elseif($header_version == 2) { ?> <div id="advanced-search-widget-version2"> <div class="container"> <div class="advanced-search-widget-content"> <form action="<?php echo home_url(); ?>" method="get" id="views-exposed-form-search-view-other-ads-page" accept-charset="UTF-8"> <div id="edit-search-api-views-fulltext-wrapper" class="views-exposed-widget views-widget-filter-search_api_views_fulltext"> <div class="views-widget"> <div class="control-group form-type-textfield form-item-search-api-views-fulltext form-item"> <div class="controls"> <input placeholder="Enter keyword..." type="text" id="edit-search-api-views-fulltext" name="s" value="" size="30" maxlength="128" class="form-text"> </div> </div> </div> </div> <div id="edit-ad-location-wrapper" class="views-exposed-widget views-widget-filter-field_ad_location"> <div class="views-widget"> <div class="control-group form-type-select form-item-ad-location form-item"> <div class="controls"> <select id="edit-ad-location" name="post_location" class="form-select" style="display: none;"> <option value="All" selected="selected">Location...</option> <?php $args_location = array( 'posts_per_page' => -1 ); $lastposts = get_posts( $args_location ); $all_post_location = array(); foreach( $lastposts as $post ) { $all_post_location[] = get_post_meta( $post->ID, 'post_location', true ); } $directors = array_unique($all_post_location); foreach ($directors as $director) { ?> <option value="<?php echo $director; ?>"><?php echo $director; ?></option> <?php } ?> <?php wp_reset_query(); ?> </select> </div> </div> </div> </div> <div id="edit-field-category-wrapper" class="views-exposed-widget views-widget-filter-field_category"> <div class="views-widget"> <div class="control-group form-type-select form-item-field-category form-item"> <div class="controls"> <select id="edit-field-category" name="category_name" class="form-select" style="display: none;"> <option value="All" selected="selected">Category...</option> <?php $args = array( 'hierarchical' => '0', 'hide_empty' => '0' ); $categories = get_categories($args); foreach ($categories as $cat) { if ($cat->category_parent == 0) { $catID = $cat->cat_ID; ?> <option value="<?php echo $cat->cat_name; ?>"><?php echo $cat->cat_name; ?></option> <?php $args2 = array( 'hide_empty' => '0', 'parent' => $catID ); $categories = get_categories($args2); foreach ($categories as $cat) { ?> <option value="<?php echo $cat->slug; ?>">- <?php echo $cat->cat_name; ?></option> <?php } ?> <?php } else { ?> <?php } } ?> </select> </div> </div> </div> </div> <div class="advanced-search-slider"> <div class="geo-location-button"> <div class="geo-location-switch off"><i class="fa fa-location-arrow"></i></div> </div> <div id="advance-search-slider" class="value-slider ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all" aria-disabled="false"> <a class="ui-slider-handle ui-state-default ui-corner-all" href="#"> <span class="range-pin"> <input type="text" name="geo-radius" id="geo-radius" value="100" data-default-value="100"> </span> </a> </div> </div> <input type="text" name="geo-location" id="geo-location" value="off" data-default-value="off"> <input type="text" name="geo-radius-search" id="geo-radius-search" value="500" data-default-value="500"> <input type="text" name="geo-search-lat" id="geo-search-lat" value="0" data-default-value="0"> <input type="text" name="geo-search-lng" id="geo-search-lng" value="0" data-default-value="0"> <div class="views-exposed-widget views-submit-button"> <button class="btn btn-primary form-submit" id="edit-submit-search-view" name="" value="Search" type="submit"><?php printf( __( 'Search', 'agrg' )); ?></button> </div> </form> </div> </div> </div> <?php } ?> </section> <?php global $redux_demo; $featured_ads_option = $redux_demo['featured-options-on']; ?> <?php if($featured_ads_option == 1) { ?> <section id="featured-ads-category"> <div class="container"> <h3><?php _e( 'Check out our Premium Featured Ads', 'agrg' ); ?></h3> <div id="tabs" class="full"> <?php $cat_id = get_cat_ID(single_cat_title('', false)); ?> <ul class="tabs quicktabs-tabs quicktabs-style-nostyle"> <li class="grid-feat-ad-style"><a class="" href="#">Grid View</a></li> <li class="list-feat-ad-style"><a class="" href="#">List View</a></li> </ul> <div class="pane"> <div id="carousel-buttons"> <a href="#" id="carousel-prev">← Previous </a> <a href="#" id="carousel-next"> Next →</a> </div> <div id="projects-carousel"> <?php global $paged, $wp_query, $wp; $args = wp_parse_args($wp->matched_query); $cat_id = get_cat_ID(single_cat_title('', false)); $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('post_type=post&posts_per_page=-1&cat='.$cat_id); $current = -1; ?> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); $featured_post = "0"; $post_price_plan_activation_date = get_post_meta($post->ID, 'post_price_plan_activation_date', true); $post_price_plan_expiration_date = get_post_meta($post->ID, 'post_price_plan_expiration_date', true); $post_price_plan_expiration_date_noarmal = get_post_meta($current_post, 'post_price_plan_expiration_date_normal', true); $todayDate = strtotime(date('m/d/Y h:i:s')); $expireDate = $post_price_plan_expiration_date; if(!empty($post_price_plan_activation_date)) { if(($todayDate < $expireDate) or $post_price_plan_expiration_date == 0) { $featured_post = "1"; } } ?> <?php if($featured_post == "1") { $current++; ?> <div class="ad-box span3"> <a class="ad-image" href="<?php the_permalink(); ?>"> <?php require_once(TEMPLATEPATH . '/inc/BFI_Thumb.php'); ?> <?php $thumb_id = get_post_thumbnail_id(); $thumb_url = wp_get_attachment_image_src($thumb_id,'thumbnail-size', true); $params = array( 'width' => 440, 'height' => 290, 'crop' => true ); echo "<img class='add-box-main-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; $attachments = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID')); $currentImg = 0; foreach($attachments as $att_id => $attachment) { $full_img_url = wp_get_attachment_url($attachment->ID); $currentImg++; if($currentImg == 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$full_img_url", $params ) . "'/>"; } } if($currentImg < 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; } ?> </a> <div class="ad-box-content"> <span class="ad-category"> <?php $category = get_the_category(); if ($category[0]->category_parent == 0) { $tag = $category[0]->cat_ID; $tag_extra_fields = get_option(MY_CATEGORY_FIELDS); if (isset($tag_extra_fields[$tag])) { $category_icon_code = $tag_extra_fields[$tag]['category_icon_code']; $category_icon_color = $tag_extra_fields[$tag]['category_icon_color']; } } else { $tag = $category[0]->category_parent; $tag_extra_fields = get_option(MY_CATEGORY_FIELDS); if (isset($tag_extra_fields[$tag])) { $category_icon_code = $tag_extra_fields[$tag]['category_icon_code']; $category_icon_color = $tag_extra_fields[$tag]['category_icon_color']; } } if(!empty($category_icon_code)) { ?> <div class="category-icon-box" style="background-color: <?php echo $category_icon_color; ?>;"><?php $category_icon = stripslashes($category_icon_code); echo $category_icon; ?></div> <?php } $your_image_url = ""; ?> </span> <a href="<?php the_permalink(); ?>"><?php $theTitle = get_the_title(); $theTitle = (strlen($theTitle) > 40) ? substr($theTitle,0,37).'...' : $theTitle; echo $theTitle; ?></a> <?php $post_price = get_post_meta($post->ID, 'post_price', true); ?> <div class="add-price"><span><?php echo $post_price; ?></span></div> </div> </div> <?php } ?> <?php endwhile; ?> <?php wp_reset_query(); ?> </div> <?php wp_enqueue_script( 'jquery-carousel', get_template_directory_uri().'/js/jquery.carouFredSel-6.2.1-packed.js', array('jquery'),'',true); ?> <script> jQuery(document).ready(function () { jQuery('#projects-carousel').carouFredSel({ auto: false, prev: '#carousel-prev', next: '#carousel-next', pagination: "#carousel-pagination", mousewheel: true, swipe: { onMouse: true, onTouch: true } }); }); </script> <!-- end scripts --> </div> <div class="pane"> <?php global $paged, $wp_query, $wp; $args = wp_parse_args($wp->matched_query); $cat_id = get_cat_ID(single_cat_title('', false)); $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('post_type=post&posts_per_page=-1&cat='.$cat_id); $current = -1; ?> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); $featured_post = "0"; $post_price_plan_activation_date = get_post_meta($post->ID, 'post_price_plan_activation_date', true); $post_price_plan_expiration_date = get_post_meta($post->ID, 'post_price_plan_expiration_date', true); $post_price_plan_expiration_date_noarmal = get_post_meta($current_post, 'post_price_plan_expiration_date_normal', true); $todayDate = strtotime(date('m/d/Y h:i:s')); $expireDate = $post_price_plan_expiration_date; if(!empty($post_price_plan_activation_date)) { if(($todayDate < $expireDate) or $post_price_plan_expiration_date == 0) { $featured_post = "1"; } } ?> <?php if($featured_post == "1") { $current++; ?> <div class="list-featured-ads"> <div class="list-feat-ad-image"> <a class="ad-image" href="<?php the_permalink(); ?>"> <?php require_once(TEMPLATEPATH . '/inc/BFI_Thumb.php'); ?> <?php $thumb_id = get_post_thumbnail_id(); $thumb_url = wp_get_attachment_image_src($thumb_id,'thumbnail-size', true); $params = array( 'width' => 440, 'height' => 290, 'crop' => true ); echo "<img class='add-box-main-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; $attachments = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID')); $currentImg = 0; foreach($attachments as $att_id => $attachment) { $full_img_url = wp_get_attachment_url($attachment->ID); $currentImg++; if($currentImg == 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$full_img_url", $params ) . "'/>"; } } if($currentImg < 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; } ?> </a> </div> <div class="list-feat-ad-content"> <div class="list-feat-ad-title"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php $post_price = get_post_meta($post->ID, 'post_price', true); ?> <div class="add-price"><span><?php echo $post_price; ?></span></div> </div> <div class="list-feat-ad-excerpt"> <p> <?php $content = get_the_content(); echo wp_trim_words( $content , '20' ); ?> </p> </div> <div class="read-more"> <a href="<?php the_permalink(); ?>"><?php _e( 'Details', 'agrg' ); ?></a></div> </div> </div> <?php } ?> <?php endwhile; ?> <?php wp_reset_query(); ?> </div> </div> </div> </section> <?php } ?> <section id="ads-category-content"> <div class="container"> <div class="span9 first"> <ul class="tabs quicktabs-tabs quicktabs-style-nostyle"> <li > <a style="font-size: 18px !important; font-weight: bold;" class="current" href="#"><?php _e( 'Latest Ads', 'agrg' ); ?></a> </li> <li> <a style="font-size: 18px !important; font-weight: bold;" class="" href="#"><?php _e( 'Most Popular Ads', 'agrg' ); ?></a> </li> <li> <a style="font-size: 18px !important; font-weight: bold;" class="" href="#"><?php _e( 'Random Ads', 'agrg' ); ?></a> </li> </ul> <div class="pane latest-ads-holder"> <div class="latest-ads-grid-holder"> <?php global $paged, $wp_query, $wp; $args = wp_parse_args($wp->matched_query); if ( !empty ( $args['paged'] ) && 0 == $paged ) { $wp_query->set('paged', $args['paged']); $paged = $args['paged']; } $cat_id = get_cat_ID(single_cat_title('', false)); $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('post_type=post&posts_per_page=9&paged='.$paged.'&cat='.$cat_id); $current = -1; $current2 = 0; ?> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); $current++; $current2++; ?> <div class="ad-box span3 latest-posts-grid <?php if($current%3 == 0) { echo 'first'; } ?>"> <a class="ad-image" href="<?php the_permalink(); ?>"> <?php require_once(TEMPLATEPATH . '/inc/BFI_Thumb.php'); ?> <?php $thumb_id = get_post_thumbnail_id(); $thumb_url = wp_get_attachment_image_src($thumb_id,'thumbnail-size', true); $params = array( 'width' => 440, 'height' => 290, 'crop' => true ); echo "<img class='add-box-main-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; $attachments = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID')); $currentImg = 0; foreach($attachments as $att_id => $attachment) { $full_img_url = wp_get_attachment_url($attachment->ID); $currentImg++; if($currentImg == 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$full_img_url", $params ) . "'/>"; } } if($currentImg < 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; } ?> </a> <div class="ad-box-content"> <a href="<?php the_permalink(); ?>"><?php $theTitle = get_the_title(); $theTitle = (strlen($theTitle) > 40) ? substr($theTitle,0,37).'...' : $theTitle; echo $theTitle; ?></a> <?php $post_price = get_post_meta($post->ID, 'post_price', true); ?> <div class="add-price"><span><?php echo $post_price; ?></span></div> </div> </div> <?php endwhile; ?> </div> <!-- Begin wpcrown_pagination--> <?php get_template_part('pagination'); ?> <!-- End wpcrown_pagination--> <?php wp_reset_query(); ?> </div> <div class="pane popular-ads-grid-holder"> <div class="popular-ads-grid"> <?php global $paged, $wp_query, $wp; $args = wp_parse_args($wp->matched_query); if ( !empty ( $args['paged'] ) && 0 == $paged ) { $wp_query->set('paged', $args['paged']); $paged = $args['paged']; } $cat_id = get_cat_ID(single_cat_title('', false)); $current = -1; $current2 = 0; $popularpost = new WP_Query( array( 'posts_per_page' => '9', 'cat' => $cat_id, 'posts_type' => 'post', 'paged' => $paged, 'meta_key' => 'wpb_post_views_count', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) ); while ( $popularpost->have_posts() ) : $popularpost->the_post(); $current++; $current2++; ?> <div class="ad-box span3 popular-posts-grid <?php if($current%3 == 0) { echo 'first'; } ?>"> <a class="ad-image" href="<?php the_permalink(); ?>"> <?php require_once(TEMPLATEPATH . '/inc/BFI_Thumb.php'); ?> <?php $thumb_id = get_post_thumbnail_id(); $thumb_url = wp_get_attachment_image_src($thumb_id,'thumbnail-size', true); $params = array( 'width' => 440, 'height' => 290, 'crop' => true ); echo "<img class='add-box-main-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; $attachments = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID')); $currentImg = 0; foreach($attachments as $att_id => $attachment) { $full_img_url = wp_get_attachment_url($attachment->ID); $currentImg++; if($currentImg == 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$full_img_url", $params ) . "'/>"; } } if($currentImg < 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; } ?> </a> <div class="ad-box-content"> <a href="<?php the_permalink(); ?>"><?php $theTitle = get_the_title(); $theTitle = (strlen($theTitle) > 40) ? substr($theTitle,0,37).'...' : $theTitle; echo $theTitle; ?></a> <?php $post_price = get_post_meta($post->ID, 'post_price', true); ?> <div class="add-price"><span><?php echo $post_price; ?></span></div> </div> </div> <?php endwhile; ?> </div> <!-- Begin wpcrown_pagination--> <?php get_template_part('pagination'); ?> <!-- End wpcrown_pagination--> <?php wp_reset_query(); ?> </div> <div class="pane random-ads-grid-holder"> <div class="random-ads-grid"> <?php global $paged, $wp_query, $wp; $args = wp_parse_args($wp->matched_query); if ( !empty ( $args['paged'] ) && 0 == $paged ) { $wp_query->set('paged', $args['paged']); $paged = $args['paged']; } $cat_id = get_cat_ID(single_cat_title('', false)); $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('orderby=title&post_type=post&posts_per_page=9&paged='.$paged.'&cat='.$cat_id); $current = -1; $current2 = 0; ?> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); $current++; $current2++; ?> <div class="ad-box span3 random-posts-grid <?php if($current%3 == 0) { echo 'first'; } ?>"> <a class="ad-image" href="<?php the_permalink(); ?>"> <?php require_once(TEMPLATEPATH . '/inc/BFI_Thumb.php'); ?> <?php $thumb_id = get_post_thumbnail_id(); $thumb_url = wp_get_attachment_image_src($thumb_id,'thumbnail-size', true); $params = array( 'width' => 440, 'height' => 290, 'crop' => true ); echo "<img class='add-box-main-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; $attachments = get_children(array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID')); $currentImg = 0; foreach($attachments as $att_id => $attachment) { $full_img_url = wp_get_attachment_url($attachment->ID); $currentImg++; if($currentImg == 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$full_img_url", $params ) . "'/>"; } } if($currentImg < 2) { echo "<img class='add-box-second-image' src='" . bfi_thumb( "$thumb_url[0]", $params ) . "'/>"; } ?> </a> <div class="ad-box-content"> <a href="<?php the_permalink(); ?>"><?php $theTitle = get_the_title(); $theTitle = (strlen($theTitle) > 40) ? substr($theTitle,0,37).'...' : $theTitle; echo $theTitle; ?></a> <?php $post_price = get_post_meta($post->ID, 'post_price', true); ?> <div class="add-price"><span><?php echo $post_price; ?></span></div> </div> </div> <?php endwhile; ?> </div> <!-- Begin wpcrown_pagination--> <?php get_template_part('pagination'); ?> <!-- End wpcrown_pagination--> <?php wp_reset_query(); ?> </div> </div> <div class="span3"> <div class="cat-widget"> <div class="cat-widget-title"><h4><?php _e( 'Subcategories', 'agrg' ); ?></h4></div> <div class="cat-widget-content"> <ul> <?php $args = array( 'type' => 'post', 'child_of' => $tag, 'parent' => get_query_var(''), 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => 0, 'hierarchical' => 1, 'exclude' => '', 'include' => '', 'number' => '', 'taxonomy' => 'category', 'pad_counts' => true ); $categories = get_categories($args); foreach($categories as $category) { ?> <li> <a href="<?php echo get_category_link( $category->term_id )?>" title="View posts in <?php echo $category->name?>"><?php echo $category->name ?></a> <span class="category-counter"><?php echo $category->count ?></span> </li> <?php } ?> </ul> </div> </div> <?php get_sidebar('pages'); ?> </div> </div> </section> <script> // perform JavaScript after the document is scriptable. jQuery(function() { jQuery("ul.tabs").tabs("> .pane", {effect: 'fade', fadeIn: 200}); }); </script> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: No Longer Able to Access WordPress SiteAn easy fix would be to enter the FTP or Hosting and erase the last plugins or themes you uploaded a hug!
Forum: Fixing WordPress
In reply to: Menu item in control panel missing WP3.9.1Lost dashboard bar at the backend?
My problem is this:
In image 1 the LOADING that there appears round and round, turning leave for more than 1 hour and did not stop.
In image 2 When I give to save the icons disappear and I got nothing appears in publications or news sections.
I already have a little bored this plugin …
I still do not solve this problem, I’m doubting that this plugin is as good as they say ….
Any help?
Forum: Plugins
In reply to: [Plugin: WooCommerce Shipping Configuration]Someone who can tell me if this makes it WooCommerce or not, to see other possibilities, greetings.