ivanoconfa
Forum Replies Created
-
Forum: Plugins
In reply to: [Job Manager] HTML field not displaying in applicationsHi Thomas, thank you for your reply.
I eventually managed to get the data to show on the admin applications page but still cannot get them to show as hyperlinks.
My website is still been built so localhost and cannot provide you with a live link but I have uploaded a snapshot of the admin applications page to show you what my issue is.Please see the Profile link at
http://clients.wowhah.com/jobmanager/job-applications-issue.jpg
Is there any way I can change the code in admin-applications.php to display these as hyperlinks and target=”_blank” .
Same problem with the email address which ideally should show as a mailto hyperlink.Hope you can help. Thank you
Forum: Plugins
In reply to: [Job Manager] HTML field not displaying in applicationsI am using the latest version of the plugin and the latest WP version btw. On a localhost test server.
Forum: Plugins
In reply to: [Work The Flow File Upload] Using shortcodes from within another pluginThank you for your reply. Other plugins’ shortcodes seem to work fine within Userpro so I thought there may be limitations with Work The Flow File Upload, that it only works as a shortcode in WP post and pages.
For instance with echo do_shortcode the uploader displays but it does not work at all. CheersForum: Fixing WordPress
In reply to: How to print EDITABLE custom fields on front endHi rickramalho. Have you ever managed to resolve this? I am looking for a plugin which allows users to type content in custom fields from the front-end, just like in your CV example. Perhaps there is a different way round?
Thank youForum: Fixing WordPress
In reply to: WP 3.4 Broken Visual & HTML editor.Hi, same issue happens with http://wordpress.org/extend/plugins/user-permissions/
Forum: Plugins
In reply to: Image slider plugin with horizontal drag & scroll barI reply to my own post.. in case someone else is looking for the same functionality.
I used a premium plugin in development found at http://digitalzoomstudio.net, the DZS Scroller for WordPress.Forum: Requests and Feedback
In reply to: Auto-install plugins when activating a theme.This is great particularly because it opens up huge possibilities for non developers like me to design themes by including plugins without the need for extra coding. There must be 1000s of designers who cannot code a plugin within a theme who will welcome your TGMPA.
Saying that, a single button to install all plugins at once would be even better. Thank youForum: Plugins
In reply to: Plugin: Options Framework – stylesheets not loadingProblem solved. There is another Options Framework theme forked from Thematic Theme Options by Devin Price, called KIA Thematic Options Panel https://github.com/helgatheviking/thematic-options-KIA
which resolves this and other issues.Forum: Requests and Feedback
In reply to: Auto-install plugins when activating a theme.Thanks! this works!
Forum: Requests and Feedback
In reply to: Auto-install plugins when activating a theme.Yes, I could really do with the same sample code too. I searched on google and could not find anything helpful. I am finding a bit of a nightmare to embed a slideshow plugin within my theme, it cannot link to the images in uploads folder.
Forum: Plugins
In reply to: [bbPress] bbpress page tempalteHi, choibc. You really just have to make a copy of your single.php file, name it forum.php and create a template to assign to a page. Something like that:
[Code moderated as per the Forum Rules. Please use the pastebin]Forum: Plugins
In reply to: [bbPress] bbpress page tempalteyep. this works, I made a copy of single.php and named it forum.php.
then added<?php /* Template Name Posts: forum */ ?>and customised forum.php as I needed. BBPress defaulted to this new file.
Thank youForum: Fixing WordPress
In reply to: Assigned Custom Post Type ID but displays allBingo! It worked!!
query_posts(‘post_type=Homepage&p=81’);
Thanks very much!Forum: Fixing WordPress
In reply to: Assigned Custom Post Type ID but displays allHi, thank you. No the post ID=81 is not showing first in the list. I am familiar with showposts but I have 10 custom posts which I want to display separately on the homepage by calling their individual IDs.
I was hoping that by creating a loop for each of them I could position them wherever I’d see fit on a page, and consequently style them differently. See below:<div id="square">?php query_posts('post_type=Homepage&post=81'); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>//doing something here endwhile; // Reset Query wp_reset_query(); ?> </div>and then
<div id="rectangle">?php query_posts('post_type=Homepage&post=84'); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>//doing something here endwhile; // Reset Query wp_reset_query(); ?> </div>Am I approaching this completely the wrong way? At the moment the ID=81 is not calling the custom ‘Homepage’ post with ID 81 but it’s calling ALL ‘Homepage’ posts. Or if I set the parameter showposts=1 it displays the latest post created. Thanks for your help.