yelgnissm
Forum Replies Created
-
Forum: Plugins
In reply to: [User Post Gallery - UPG] guys your site is down at the momentMY MISTAKE Sorry!!!
It was my proxy.Love your plugin, glad I bought it!
Forum: Plugins
In reply to: [User Post Gallery - UPG] guys your site is down at the momentPinged you here in case the mail at odude.com isnt going through at the moment.
No problems, if you can ping me when you resolve it.Mark
Hi thats a tricky one.
I’ve used https://www.ads-software.com/plugins/carousel-slider/ successfully, but not sure it’s exactly what you need.My least favorite thing to do is find carousel plugins. Maybe this will work in your setup.
If you find a better option please share.
Forum: Plugins
In reply to: [WP Customer Reviews] Average reviews and Stars not showing.Hi Thats working!
but at the bottom in the pagination, it’s still showing none?
Is there a way to show that too?Hi Just tried that and still stays at EDT
HI Both are set to New York
Our event is happening in Paris, but it’s not correctly changing to that.https://www.awesomescreenshot.com/image/3323848/78fb296298818ae278388ffc4b9f31f8
https://www.awesomescreenshot.com/image/3323849/a1be87d477dc4cecca8dc556301b9b56
Forum: Plugins
In reply to: [ProfileGrid – User Profiles, Groups and Communities] Paragraph fieldHI – When you select paragraph as the field, the options for it to appear in the profile etc at the bottom of the page disappear, unlike the other fields.
HI Goran!
Is there a formula for the referral url, ?like is it https://www.yoursite.com/…./…../user-id?
If I can figure that out you’ve solved a major problem for me.!
Thanks
If I could just extrapolate it for the old customers, that would be super helpful.
Mark
Hi Goran!
Ok, I think you gave another customer a formula as to how the names are generated?
like is there a pattern?like their username, etc?
What’s the formula that creates their referral URL, I could create the old one’s that way.I really need to do that.
Mark
Forum: Plugins
In reply to: [Go Fetch Jobs (for WP Job Manager)] Getting a Fatal ErrorHi Sure thing!
One thing that is weird, is that I loaded a fresh wordpress install on a new URL. Then I loaded the normal theme I use which uses siteoriginpagebuilder.
Then I installed wpjobmanager.
Then I installed Go fetch.Works totally fine.
This other domain, which I’m having problems with, is an old domain with lots of junk on it, HAD AN OLD install of wpjobmanager on it from 2014, and lots of old plugins.
SO, I’m deleting the entire wordpress install and installing fresh.
It might not be your wonderful plugin at all but the old junk in my install.
But I’ll keep you posted.
And Great plugin, fantastic price!! I’m going to test it with Jobroller, and wpjobmanager. Just doing jobmanager first because I’m familiar with it.
Forum: Plugins
In reply to: [Go Fetch Jobs (for WP Job Manager)] Getting a Fatal ErrorI’m going to roll out your plugin on two separate sites, one for jobroller and one for wp-job manager.
Testing both, but liking wp jobmanager more
Forum: Plugins
In reply to: [Go Fetch Jobs (for WP Job Manager)] Getting a Fatal Errornow I get
Parse error: syntax error, unexpected T_FUNCTION in /home/jadesour/public_html/wp-content/plugins/go-fetch-jobs-wp-job-manager/includes/admin/class-gofetch-admin-settings.php on line 428
`<?php
/**
* Provides a base abstract class for easier creation of HTML tables.
*
* @package GoFetch/Table
*/
if ( !defined( ‘ABSPATH’ ) ) {
die;
}
/**
* Base class for HTML tables.
*/
abstract class GoFetch_WPJM_HTML_Table
{
protected function table( $items, $attributes = array(), $args = array() )
{
$args = wp_parse_args( $args, array(
‘wrapper_html’ => ‘table’,
‘header_wrapper’ => ‘thead’,
‘body_wrapper’ => ‘tbody’,
‘footer_wrapper’ => ‘tfoot’,
) );
extract( $args );
$table_body = ”;
$table_body .= html( $header_wrapper, array(), $this->header( $items ) );
$table_body .= html( $body_wrapper, array(), $this->rows( $items ) );
$table_body .= html( $footer_wrapper, array(), $this->footer( $items ) );
return html( $wrapper_html, $attributes, $table_body );
}protected function header( $data )
{
}protected function footer( $data )
{
}protected function rows( array $items )
{
$i = 0;
$table_body = ”;
foreach ( $items as $item ) {
$table_body .= $this->row( $item, array(
‘class’ => ( $i % 2 == 0 ? ‘alternate ‘ . $item[‘type’] : $item[‘type’] ),
) );
$i++;
}
return $table_body;
}protected abstract function row( $item = array(), $atts = array() );
protected function cells( $cells, $atts = array(), $type = ‘td’ )
{
$output = ”;
foreach ( $cells as $key => $value ) {
if ( empty($atts[$key]) ) {
$atts[$key] = ”;
}
$output .= html( $type, ( !empty($atts[$key]) ? $atts[$key] : array() ), $value );
}
return $output;
}}
Forum: Plugins
In reply to: [Go Fetch Jobs (for WP Job Manager)] Getting a Fatal ErrorThere isn’t a line that matches you line
There is
protected abstract function row( $item );
but not
abstract protected function row( $item );
So I’ll try (But PHP is Martian to me but this could be right)
protected abstract function row( $item = array(), $atts = array() );
Forum: Plugins
In reply to: [Go Fetch Jobs (for WP Job Manager)] Getting a Fatal ErrorHi I didn’t get to check it before bed but will now. Let me go do that and report back.
Mark