no_ob
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to determine a Page IDOr inside loop:
global $post; $post->ID
Forum: Fixing WordPress
In reply to: fatal error: Call to undefined functionThats the whole other solution but ok, if you’re fine with that :)! You should do so! Cheers
Forum: Fixing WordPress
In reply to: fatal error: Call to undefined function1. Check your functions.php
has_post_thumbnail does need:
add_theme_support( 'post-thumbnails' );
2. If it dont works, please post a few lines from your script like line 25 will 40.Forum: Themes and Templates
In reply to: Linking PagesSeveral options… I guess your form is handled by PHP. You can create a plugin and adding a shortcode for it, or just copy & paste your copy over to another ‘page template’. https://codex.www.ads-software.com/Pages and read https://codex.www.ads-software.com/Stepping_Into_Templates. If you will choose the option for a page template, it’s quite handy if you will do:
<form method=”POST” action=””> so the whole handling will take place in one single page.Forum: Plugins
In reply to: [Plugin: PodPress] Doesn't works!Same issue in Chrome. Dont see anything anywhere.
https://www.filettirossi.com/SPKvideo//QPTeL15.flv…. There are double forward slashes…. That could be causing a problem in regards to loading the file…. Is there anything missing concering a directory ?
Forum: Plugins
In reply to: Exclude Old posts from popular widgetWhich widget are you using ? And how is this information retrieved ? You’re solution will depends on that
Forum: Plugins
In reply to: insert into table and refresh issueI’ve created the table as
bcw_name varchar(255) NOT NULL UNIQUE,
Is this a valid way to keep double entry’s out of here ? It works, but is it a valid way ?
Forum: Fixing WordPress
In reply to: permalink for tagsGot it ?? Thanks anyways for looking!
Forum: Fixing WordPress
In reply to: permalink for tagsfunction cs_search_tags_manually() { global $wpdb; $search_query = $wpdb->get_results("SELECT name FROM $wpdb->terms WHERE name LIKE '%". $_POST['manual-search'] ."%' "); foreach ($search_query as $result) { echo '<a href="'. get_tag_link($result) .'">'. $result->name .'</a><br />'; } }
This is it till so far but further… I dont know
Forum: Fixing WordPress
In reply to: single post widthGot it!
Another stylesheet ??
Forum: Fixing WordPress
In reply to: single post widthtoo bad ??
Forum: Fixing WordPress
In reply to: single post widthThis will be result. I’ve already tried it ??
Check:
https://test.cell-systems.net/2010/01/09/bghj-gh-ug/You will see it dissapears in the right
Forum: Fixing WordPress
In reply to: single post widthForum: Fixing WordPress
In reply to: user avatarsSorry, i was forgot to mention we are using a plugin for this.
Does anyone know a plugin for BB AND WP avatar ?
Forum: Fixing WordPress
In reply to: Multi paged poststhank you!! Cheers