CSKnet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Links not working?I am having the exact same issue that RunColo was having, but that trick did not work for me. 🙁 It works when I set it to default, but not when I set it back to anything other than that.
Forum: Fixing WordPress
In reply to: PAGE notes for ADMIN for LANDING PAGES via ADWORDSJust in case anyone else faces this…
To add the column headers:
I edited wp-admin/includes/template.php
around line 798
function wp_manage_pages_columns() { and added the two column header names I needed.And to pull the values (I figured out I could just use custom fields, but this plug-in makes it easier)…
In the same file as above, around line 1713, I added case statements for each, with the following:
case ‘field-key-name’:
?>
<td <?php echo $attributes ?>><?php
echo do_shortcode(get_meta(‘field-key-name’));
?></td>
<?php
break;
And voila!Forum: Plugins
In reply to: [Plugin: More Fields] How to Display values in wp-admin/edit-pages.php?Just in case anyone else faces this…
To add the column headers:
I edited wp-admin/includes/template.php
around line 798
function wp_manage_pages_columns() {and added the two column header names I needed.And to pull the values (I figured out I could just use custom fields, but this plug-in makes it easier)…
In the same file as above, around line 1713, I added case statements for each, with the following:
case 'field-key-name':
?>
<td <?php echo $attributes ?>><?php
echo do_shortcode(get_meta('field-key-name'));
?></td>
<?php
break;
And voila!Forum: Fixing WordPress
In reply to: PAGE notes for ADMIN for LANDING PAGES via ADWORDSWell, I figured it out on my own after a beer or two 😛
Going to use the plug-in More Fields. Create a new Page Type, based on Page, as AdWords Landing Page or something. Going to create a new field for AdWords Ad Name. Then try to edit the /wp-admin/edit-pages.php to display this new custom field.
Will let you know if this works, and how I edited the edit-pages.php in a bit, just in case someone else has a similar quandary.
Forum: Fixing WordPress
In reply to: Error on wp-admin/edit.phpSame issue here
Forum: Fixing WordPress
In reply to: CGI Error?Okay all. It took some hand-in-hand work with my hosting company to sit there and comment out the directive on the .htaccess each time I did something, but we found it was the “Download Monitor” plug-in which was giving us trouble. So, just to let you know, if you were thinking of using that plug-in, it can be problematic depending on your setup.
Forum: Fixing WordPress
In reply to: CGI Error?Thanks esmi. I know no one is being paid to help. It’s just disheartening when it seems like all the other questions are being responded to except for mine.
I will attempt the plug-in check.
Forum: Fixing WordPress
In reply to: CGI Error?Bump………..PLEASE Someone help………….
Forum: Fixing WordPress
In reply to: CGI Error?I guess one more Bump wouldn’t hurt
Forum: Fixing WordPress
In reply to: CGI Error?Bump…
Forum: Fixing WordPress
In reply to: CGI Error?If there is any extra information that you needed, please let me know, so that I can get a reply to this. Thanks 🙂
Forum: Fixing WordPress
In reply to: CGI Error?bump
Forum: Fixing WordPress
In reply to: CGI Error?bump
Forum: Fixing WordPress
In reply to: Individual “Admin” Rights for UsersDoes anyone know if this is compatible with 2.7+ ?
Forum: Plugins
In reply to: Featured Content Plugin in Jquery?Hey Mobster,
I see you got something working pretty well there. This is kinda what I am looking for. I have a multi-author blog, where the authors have zero clue on WordPress, SEO, Writing Online Copy, HTML, etc…So I want to make a tips/tutorials thing on the backend, on the Dashboard, and would love to set it up in kinda that way, with a timed slider, allowing for read more, etc.
You mind sharing with me what you did on your end?
Many thanks!