one3rdnerd
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] All Reviews Now MissingI went and investigated my database tables via php my admin and when I explored the tables for this plugin I got the following response…
MySQL said:
#1286 – Unknown table engine ‘InnoDB’
Any one else had this or know what the issue could be?
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Acces token keeps expiring… =(Im getting this error too. Right pain, as the plugin is great other than this major issue. It posts to my personal timeline every time without fail but not the fanpage.
Forum: Plugins
In reply to: Plugin: Cimy User Extra Fields – Image URL In Rich EditorI have dropped you an email regarding the above.
Thanks
Forum: Plugins
In reply to: Plugin: Cimy User Extra Fields – Image URL In Rich EditorThe last thing I want to do is upset you Marco as I both appreciate your hard work on developing this tool and your prompt assistance. I am just providing what I know.
To create this on an author profile I have created a function in my functions.php file within the theme. (Thesis Theme).
The code used is below.
/* Add Additional Fields to Author Profile */ // Author / User Profiles function my_author_intro($output) { global $wp_query; $curauth = $wp_query->get_queried_object(); if (is_author()) { $authinfo = '<div id="archive_info"><h1>' . $curauth->display_name . '</h1></div>' . "\n"; $aboutbio = '<div id="profile-bio"><span style="color: #535250; font-size: 1.3em; line-height: 1.7em; padding-right: 2em;">' . get_cimyFieldValue($curauth->ID, 'ABOUT') . '</span></div>'; $banner = '<div id="banner"><span style="">' . get_cimyFieldValue($curauth->ID, 'BANNER') . '</span></div>'; $latesttitle = '<div id="latest-title"><h2> Latest Articles </h2></div>'; $output = $authinfo . $aboutbio . $banner . $latesttitle; } return $output; } add_filter('thesis_archive_intro','my_author_intro');
You can ignore the banner part of the code as that pulls a banner url through and works fine. The part of interest is the code inside $aboutbio
Does that help you any more? If you provide me an email I will send you a login link to the screen where this is being controlled?
Thanks
Forum: Plugins
In reply to: Plugin: Cimy User Extra Fields – Image URL In Rich EditorThe example url is an author profile url. I am hooking your plugin fields in with this page myself and the first content box you see on this page at the top is created using CIMY. It uses the rich text editor field option and I have added text and an image to this box so it then displays on user profiles? That make sense?
So it is the rich text editor I think which is changing the image urls from absolute to relative to the wordpress install hense the ../wp-content instead of the full image url?
People can fill this field in AFTER registration by logging in and going to Dashboard > Users > Your Profile.
Thanks again.
Forum: Plugins
In reply to: Plugin: Cimy User Extra Fields – Image URL In Rich EditorHi Marco,
I have been on your site and looked for anything related but can’t see it.
Really do not want to waste your time and that wasnt my intention at all.
What I am saying is… regardless of registration disabled if you look at the example link you will notice there is text on the top left of the content area where there should be a photo, if you inspect that part of the source you will see the image url it is trying to pull in begins with ../wp-content which doesnt work, if you edit the source live and just remove the two dots it works fine.
Does that help you understand?
I have upgraded to the latest version of the plugin and the latest version of wordpress.
Thanks, hope your having a nice day.
Hi Marco,
Thanks for the response. I have raised a new ticket at the below link
Thanks in advance for any advice or help.
I noticed the images added to the rich text box on the author profiles using this plugin has added ../wp-content/ and thus doesnt find the images anymore. Is there a way I can force this to take the definitive image url instead of using ../ to try and find them relatively?
Forum: Plugins
In reply to: [WP Customer Reviews] Manually inserting the php into a page template?Come on guys, a template tag themes could use in their loop like on archive page teasers etc to show latest review star rating or aggregate would be awesome for theme development.
Cheers
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Small feature requestOne approach is to use css to hide it for now? I think this is worthwhile as an option because people who set this system up are going to bulk accept / submit old testimonials and not want them to show the date. Maybe editing the submission date would be another worthy addition.
I would be willing to make a donation for the following two features to be added…
A template tag – This would allow me to use it in my theme in custom places, main reason I would like to see this is for hooking it into custom templates in use on custom post types like a product post type. Example – Making it work with WPEC.
A h-review aggregate, I read some discussion this was in, and then that it wasnt, so I am really not sure.
Cheers
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Aggregate scoresI think this is an essential feature. I thought it already did this ??
Hopefully there will be an update soon, if this is added and a template tag I would be willing to donate.
I removed the date with css, but its not ideal.
I definitely think control over the date would be important so google and other sites dont see all your reviews as published on the same day.
One point I have to add to this, is that while the above adds support, it doesnt automatically output the review on your page or post if your using a custom template, which WPEC of course does.
Does this plugin provide a template tag we can use like
<?php echo wp_customer_reviews_tag ?>
To hook it into a custom template?
Thanks, I look forward to your reply, if the above is not yet configured, what part should I copy and paste to my custom template? Love the plugin and I am preparing to blog about it on a pretty big authority site, but having that covered would really help in making it an awesome article.
Hi elronino,
If your still interested in this, I would hold tight for the new release of WPEC.
I am using the 3.8 RC4.
The difference is the new version uses custom post types and runs off a lot more of the work done by wordpress. This means I have been able to pretty easily add the wp customer review to my wpec products.
If you look at line 104 of the admin.js in the customer reviews plugin and copy the second line and paste it below, then look for the word “post” and change it to “wpsc-product” hit save, update, and go to add a new product and voila,I am pretty sure thats all there is too it.
I think a great addition to customer reviews would be an option on the dash which looks to see if you have any custom post types setup and if so displays them with a check box so you can add support to them from the admin. Shoulnt be too tricky.
I have also hacked wpec to take thesis custom meta, and scribe SEO. ?? Good luck.