agokeren
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Advanced Custom Fields] error the_field()[code]
><?php the_field('banner_image'); ?>[/code]Forum: Plugins
In reply to: [Plugin: Advanced Custom Fields] error the_field()Forum: Plugins
In reply to: [WP-Table Reloaded] [wp-table-reloaded] Cannot saveSame with me,
I have import csv file twice and its fine working. But the next import cannot save. The ID table was created but with a blank data.
Can u help this? Thanks
Forum: Fixing WordPress
In reply to: SlideshowWhat you mean slideshow like this? G-Land
Forum: Themes and Templates
In reply to: Page 2 on Blog is Broken LinkWhat framework are you using?
I see this problem on config paginationForum: Themes and Templates
In reply to: How to show one page on lightboxmake if else on <?php get_header(); ?>
if post id you need to popup dont show the header,footer or sidebar, just only title, content and something like thatForum: Themes and Templates
In reply to: Making a background transparentSimple way you can try this…
hxxp://www.dillerdesign.com/experiment/DD_belatedPNG/
Forum: Themes and Templates
In reply to: Help!! Problem with creating new themedownload the default theme wordpress an see style.css
At there you can find
/*————–sidebar————–*/
/*————–header————–*/and something like that…., now you write this at your stylesheet,,,
Forum: Themes and Templates
In reply to: Any Help would be appreciatedyou can added a script to grab your image in content,,,,
check your plugin,,,disable all
Forum: Your WordPress
In reply to: Makeover Blognice bro,,great design for custom theme ??
Forum: Developing with WordPress
In reply to: Images on category pagesYou can try this…
In header.php:
<?php function catch_that_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('//i', $post->post_content, $matches); $first_img = $matches [1] [0]; if(empty($first_img)){ //Defines a default image $first_img = "https://yourdomain.com/images-default.jpg"; } return $first_img; } ?>
and this on your page to show the image example on archive.php
<?php echo catch_that_image() ?>
If in content is there no image, then the default image will be used.
[Mod: Please stop pimping your site]
Forum: Developing with WordPress
In reply to: Using PHP in WordPressYou can use this….
<?php define(‘WP_USE_THEMES’, false); require(‘./wp-blog-header.php’); ?>
for header
<?php include (TEMPLATEPATH . ‘/header.php’); ?>
for sidebar
<?php include (TEMPLATEPATH . ‘/sidebar.php’); ?>
for footer
<?php include (TEMPLATEPATH . ‘/footer.php’); ?>
Forum: Fixing WordPress
In reply to: Please help! Permalink structure isn't working!make sure you make .htaccess on your file host…
see G-Land for example link custom
Forum: Fixing WordPress
In reply to: Can’t change date format