giilour
Forum Replies Created
-
Forum: Plugins
In reply to: [wpForo Forum] How do you change to the Q+A layout(solved) – I found it in the individual forums when you create or edit them.
Forum: Plugins
In reply to: [Ultimate Gift Cards for WooCommerce] Internal Service errorYes it’s another third party plugin that conflicts with your third party plugin. Unfortunately I have to disable yours, as the other woocommerce related plugin has priority of functionality over yours.
I wanted to ask if there was a hint of where I could be looking to see where the conflict might actually be within your software that might cause this conflict and “internal server error” to appear.
Forum: Themes and Templates
In reply to: [Zerif Lite] New Update Ruins Formattingok it seems like you have to change the text on those items for them to appear. Even if you are happy with the text already just change them and change them back
Forum: Themes and Templates
In reply to: [Zerif Lite] New Update Ruins Formattingi have this problem – not as severe but when logged in the formatting is fine, when logged out and seen by public the “testimonials” heading disappears, and the “bottombottom button” the clickable link button is not there – please help
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Still sending emailsok I u think I understand – so they can create a profile automatically through wordress or buddypress but I can only moderate those areas not moderate membership?
Forum: Plugins
In reply to: [WooCommerce] Shipping charge for every second itemyeah i tried to do that but it doesn’t work for every second item – just for every single item – if I try to divide by two it uses .5 to calculate shipping.
and I can’t seem to find a way to do a minimum shipping charge
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] youtube embed in xprofile fieldsare you using the youtu.be link as the input in the field?
make sure the field type in xprofile is website(html5)
and change the
if ($field->name == ‘Link test youtube’)to if ($field->name == ‘Whatever the name of the xprofile field is called’)
Forum: Plugins
In reply to: [Restrict Author Posting] restrict author posting category with gravity formsi think I got it working by allowing all categories on gravity forms and setting it to admin only view
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Youtube embedall good. i found it on this https://www.ads-software.com/support/topic/youtube-embed-in-xprofile-fields?replies=2#post-8212551
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] youtube embed in xprofile fieldsgot it working with this code
add_filter( ‘bxcft_show_field_value’, ‘my_show_field’, 15, 4);
function my_show_field($value_to_return, $type, $id, $value) {
if ($type == ‘web’) {
$value = str_replace(“<p>”, “”, $value);
$value = str_replace(“</p>”, “”, $value);
$field = new BP_XProfile_Field($id);
if ($field->name == ‘Link test youtube’) {
$link_src = strip_tags(trim($value));
$link_src = str_replace(‘youtu.be/’, ‘youtube.com/embed/’, $link_src);
return ‘<iframe width=”560″ height=”315″ src=”‘.$link_src.'” frameborder=”0″ allowfullscreen></iframe>’;
}
}
return $value_to_return;
}change the ‘Link test youtube’ to the field that you have in your xprofile.
the field type is website(html5)
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Youtube embedbump
how did you get this to work?
Forum: Plugins
In reply to: [Mage Front End Forms] can not access settingsupdate – the image gets uploaded to media library.
Forum: Plugins
In reply to: [Mage Front End Forms] can not access settingsok so I’m on 1.07 and the settings page comes up fine.
I created a form and using the form shortcode eg. [form id=”85″] and the form comes up ok on the page. when I put in information and upload a featured image everything works fine (featured image, title, description) click submit and the button turns to submitting then the screen just kind of refreshers with the same information on it. I check to see if there is a post that has been populated and nothing on the “all posts” menu.
I tested deactivating all plugins still no good, my form initially didn’t have cateogries, I changed that to the drop down but still no good.