monarchmdm
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Frontpage-Slideshow] Screen reslution pushed ouHitI had the buttons on the right and when I switched them to the left, the problem went away… sweet but trying to figure out why 🙂 I would like to be able to put the buttons on the right aswell
Forum: Fixing WordPress
In reply to: After 2.8, I can’t drag anything in the admin areaTurning on accessibility mode under screen options button in top-right worked for me. Basically the ability for me to just drag and drop widgets into place stopped. Turning on accessibility mode under screen options button took the drag feature away but you just pick a widget and click “add” then you can place it on the next screen.
Tks for posting daviddebeer!
Forum: Fixing WordPress
In reply to: All my posts disappearedHi thanks,
I have all the plug-ins de-activated and also re-set the permalinks. I changed the home page to static and it shows up but no comments, posts, archives or anything shows up…
http://expelledthemovie.com/blog/
Thanks!
Forum: Plugins
In reply to: [Plugin: Aleph] Content profile.phpCan anyone tell me how to add ALL the cimy extra user fields into this aleph profile page? I have searched high and low and I am not advanced enough to figure it out with just the code 🙁
below is my aleph php code. Right now I am displaying ONE field from Cimy whch is address. That works but I want to either a, know how to display all the extra fields or b, how to add an additional Cimy extra field such as “phone” in addition to “address” which is already in there. Any help would be very very much appreciated!
<?php get_header(); ?>
<!–
This is a example template for Aleph.
The function aleph_user_profile() outputs a formatted profile. You need to put it between the adequate markup of your template.–>
<div id=”content” class=”narrowcolumn”><?php
add_action(‘aleph_user_profile_fields’, ‘display_user_cimy_field’);function display_user_cimy_field() {
$address = aleph_get_user_cimy_field(“address”);
if ($address) {
echo ‘<dt>Address</dt>’;
echo ‘<dd>’ . $address . ‘</dd>’;
}
}
aleph_user_profile(
array(
‘before_title’ => ‘<h2 class=”center”>’,
‘after_title’ => ‘</h2>’,
‘before_section’ => ‘<div class=”entry”><h3>’,
‘after_section’ => ‘</h3>’,
‘before_avatar’ => ‘<div style=”float: right;”>’,
‘after_avatar’ => ‘</div></div>’
)
);
?></div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: aleph, Cimy integrationThanks, I am not good enough to know what to do with that. I want to add a phone number to the profile code above. I created and added a “phone” field to the cimy extra user fields plug in. Any way you could throw that (or an example of it) intio the code aboe using any field. i will replace with phone if needed but “phone” is the field and will pull it. I tried duplicating the code and it whacks it out.
Thanks!
Forum: Plugins
In reply to: [Plugin: Aleph] Needed features?I am trying to get all the Cimy fields to display on the profile page (all the Cimy extra fields) right now I have one extra field displaying on the profile page. Code is below tks. Your plugin is awesome!
<?php get_header(); ?>
<!–
This is a example template for Aleph.
The function aleph_user_profile() outputs a formatted profile. You need to put it between the adequate markup of your template.–>
<div id=”content” class=”narrowcolumn”><?php
add_action(‘aleph_user_profile_fields’, ‘display_user_cimy_field’);function display_user_cimy_field() {
$address = aleph_get_user_cimy_field(“address”);
if ($address) {
echo ‘<dt>Address</dt>’;
echo ‘<dd>’ . $address . ‘</dd>’;
}
}
aleph_user_profile(
array(
‘before_title’ => ‘<h2 class=”center”>’,
‘after_title’ => ‘</h2>’,
‘before_section’ => ‘<div class=”entry”><h3>’,
‘after_section’ => ‘</h3>’,
‘before_avatar’ => ‘<div style=”float: right;”>’,
‘after_avatar’ => ‘</div></div>’
)
);
?></div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Secondly, I cant get the user list to show up. I am also using member list, would that interfere?
lcfcountryclub.com/blog
Forum: Plugins
In reply to: el-Aleph & CimyYou advice worked for me thank you. Is there a way to add all the extra field or even additional extra fields? In may case I replaced Gender with address and have that up but now want to add phone number…
Forum: Plugins
In reply to: [Plugin: Aleph] Users list not workingHow did you get it fixed? I am having the same problem and cant display the user list? thanks
Forum: Fixing WordPress
In reply to: All my posts disappearedUpdate, All the posts are in the backend if I go to edit them but no pages or comments show up…