worduppress
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Email ProblemsI have still not resolved this problem, but I have found out what the problem is.
Example: UserA submits an offer to UserB..this email shows up as a message form:UserA@gmail.com to:UserB@gmail.com..i’m not sure why this is a problem..but it is..(something to do with making sure that the email is coming from the location that it claims to be coming from) from info@mydomain to userB@gmail..and not from info@mydomain claiming to be UserA@gmail sending to UserB@gmail
This is how I need it to work: UserA submits an offer ..my host email then sends an email to UserB (from: info@mydomain to UserB@gmail.com)
Any suggestions?
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] bid button takes me to page not foundI don’t know if this is considered a resolution or not but..in order for me to fix this problem I had to deactivate the BadgeOs plugin that I was using. It appears that the two conflict. I would really like a better solution that would allow me to use both.
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] bid button takes me to page not foundDidn’t work for me..emailed him on the 13th
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Email ProblemsThank you for your assistance..unfortunately I am still having issues. After dedicating several days and countless hours with no response from support..I have decided to pay someone to look into it..this is really sad. If this plugin was free, i’d understand … but its not..so there should be some type of support. The only time that i’ve received a response from this guy is when i was asking questions about purchasing it. Anyway..thanks again for at least trying to help
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Email ProblemsForum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Email ProblemsSo should it look like this
dl=0″>https://www.dropbox.com/s/mctme0inb9f2qkz/Screen%20Shot%202015-12-14%20at%208.27.35%20AM.png?dl=0
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Email ProblemsHell Lastpoke,
The php code is below. I’m not sure what you mean by configure the website mail..is this it.. – (Mail server: mail.example.com – Port 110 Login Name: mail.example.com Update service: http://rpc.pingomatic.com/). My mail is set up through Hostgator…I called them yesterday and we checked that the settings were correct..we sent test mail and nothing went to spam or junkThanks for responding
`<?php
/**
* fortunato functions and definitions
*
* @package fortunato
*//**
* Set the content width based on the theme’s design and stylesheet.
*/
if ( ! isset( $content_width ) ) {
$content_width = 930; /* pixels */
}if ( ! function_exists( ‘fortunato_setup’ ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function fortunato_setup() {/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you’re building a theme based on fortunato, use a find and replace
* to change ‘fortunato’ to the name of your theme in all the template files
*/
load_theme_textdomain( ‘fortunato’, get_template_directory() . ‘/languages’ );// Add default posts and comments RSS feed links to head.
add_theme_support( ‘automatic-feed-links’ );/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( ‘title-tag’ );/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
*/
add_theme_support( ‘post-thumbnails’ );
add_image_size( ‘fortunato-the-post’ , 1920, 99999);// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
‘primary’ => __( ‘Primary Menu’, ‘fortunato’ ),
) );/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( ‘html5’, array(
‘search-form’, ‘comment-form’, ‘comment-list’, ‘gallery’, ‘caption’,
) );/*
* Enable support for Post Formats.
* See http://codex.wordpress.org/Post_Formats
*/
add_theme_support( ‘post-formats’, array(
‘video’, ‘audio’, ‘gallery’
) );}
endif; // fortunato_setup
add_action( ‘after_setup_theme’, ‘fortunato_setup’ );/**
* Register widget area.
*
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
*/
function fortunato_widgets_init() {
register_sidebar( array(
‘name’ => __( ‘Sidebar’, ‘fortunato’ ),
‘id’ => ‘sidebar-1’,
‘description’ => ”,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h3 class=”widget-title”>’,
‘after_title’ => ‘</h3>’,
) );
}
add_action( ‘widgets_init’, ‘fortunato_widgets_init’ );/**
* Enqueue scripts and styles.
*/
function fortunato_scripts() {
wp_enqueue_style( ‘fortunato-style’, get_stylesheet_uri() );
wp_enqueue_style( ‘font-awesome’, get_template_directory_uri() .’/css/font-awesome.min.css’);
$protocol = is_ssl() ? ‘https’ : ‘http’;
wp_enqueue_style( ‘fortunato-googlefonts’, $protocol .’://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700′);wp_enqueue_script( ‘fortunato-custom’, get_template_directory_uri() . ‘/js/jquery.fortunato.js’, array(‘jquery’), ‘1.0’, true );
wp_enqueue_script( ‘fortunato-navigation’, get_template_directory_uri() . ‘/js/navigation.js’, array(), ‘20120206’, true );
wp_enqueue_script( ‘fortunato-skip-link-focus-fix’, get_template_directory_uri() . ‘/js/skip-link-focus-fix.js’, array(), ‘20130115’, true );if ( is_singular() && comments_open() && get_option( ‘thread_comments’ ) ) {
wp_enqueue_script( ‘comment-reply’ );
}
}
add_action( ‘wp_enqueue_scripts’, ‘fortunato_scripts’ );/**
* Implement the Custom Header feature.
*/
require get_template_directory() . ‘/inc/custom-header.php’;/**
* Custom template tags for this theme.
*/
require get_template_directory() . ‘/inc/template-tags.php’;/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . ‘/inc/extras.php’;/**
* Customizer additions.
*/
require get_template_directory() . ‘/inc/customizer.php’;/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . ‘/inc/jetpack.php’;/**
* Load Fortunato Dynamic.
*/
require get_template_directory() . ‘/inc/fortunato-dynamic.php’;function wdm_fromemail($email) {
$wpfrom = get_option(‘admin_email’);
return $wpfrom;
}function wdm_fromname($email){
$wpfrom = get_option(‘blogname’);
return $wpfrom;
}add_filter(‘wp_mail_from’, ‘wdm_fromemail’);
add_filter(‘wp_mail_from_name’, ‘wdm_fromname’);Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Email Problemsstill no response…i’ve added this code in “funtions.php” but have no glue what to edit..
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Not showing images at BOsame problem here
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] help – trying to go livei’m not quite sure how Nitesh chooses which questions to address…as he has skipped over all of my concerns…anyway.I believe that the info that you are looking for is https://www.youtube.com/watch?v=9FW2H2oYS-k
good luck
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] bid button takes me to page not foundI am having the same problem. It was working days ago..now it goes to “oops that page can’t be found”
I have resolved my issue.
Just curious to know if you resolved your problem. I had the same issue. i used Paid membership pro plugin. Just youtube it and it’ll explain how to set it up. If you are only looking to mask the WP login screen..just A5 custom login page..youtube it.
I am only a user..i’m having problems receiving email alerts and sending invoices..what problems are you having? I had some other problems but managed to work them out..maybe I can help. It would be nice if others would visit and respond to each others problems (not that it is their responsibility..but it would be nice)
Same here…can’t get the test account to send invoice either