Forum Replies Created

Viewing 15 Topics - 1 through 15 (of 36 total)
Author Posts
May 17, 2015 at 8:11 am in reply to: Override Login Form Template 44180
Rob Rob

Hi

I can’t make this work. I’ve tried in /theme/, /theme/wp-user-frontend-pro/, and /theme/wp-user-frontend-pro/templates/. I’ve also tried these options without “-pro”.

Suggestions?

Thx
ROB

April 23, 2015 at 4:20 am in reply to: Fields disappearing 42090
Rob Rob

OK, maybe I did not make myself clear: the problem only appears on the back end, where fields disappear as per my screencast. I have not checked the front-end at all.

To summarize the problem:

  • form id=2422 “Listing add/edit” has 145 fields
  • the duplicate form (id=13633 “Listing: BACKUP DON’T DELETE”) has only 43 fields

Thanks
ROB

April 22, 2015 at 5:37 pm in reply to: Fields disappearing 42033
Rob Rob

Thanks Towhid

1. Those files are not accessible by me. Please share
2. I don’t quite understand what you mean in your last reply – there was no front end problem, only backend.

Rgds Rob

April 21, 2015 at 4:32 pm in reply to: Fields disappearing 41916
Rob Rob This reply has been marked as private.
April 21, 2015 at 2:26 pm in reply to: Fields disappearing 41904
Rob Rob This reply has been marked as private.
April 21, 2015 at 4:39 am in reply to: Fields disappearing 41867
Rob Rob This reply has been marked as private.
April 20, 2015 at 5:53 pm in reply to: Fields disappearing 41846
Rob Rob

http://propertyfinda.co.nz/backups/propertyFINDA-wpuf-2015-04-20(1).json

For some reason the.json isn’t in the hyperlink

March 28, 2015 at 3:48 am in reply to: Help with js 40135
Rob Rob

Any progress with this enquiry?

February 13, 2015 at 2:34 am in reply to: View post button 36628
Rob Rob

The trick is in the words “Add an action hook in the form (in this case called “view_post_button”)”.

In your form, add a field called “action hook” and put “view_post_button” in both fields. Update etc. Then you can style the button using the class “button”

I can’t show you mine because it’s on a protected page.

That’s it. Hope this helps

February 9, 2015 at 1:03 pm in reply to: Backend speed problem 36177
Rob Rob

Hi

I replied on the web site:

I tried this (disable other plugins) and it improved from 28 seconds to
22 seconds to load on the back end, which is still not good.

I have exported the offending form – would you please check it on you
end?Download json file

I also attach this file

Thanks
ROB

weDevs Team wrote:

February 9, 2015 at 7:24 am in reply to: View post button 36149
Rob Rob

Actually I seem to have sorted it.

Add an action hook in the form (in this case called “view_post_button”) and put the following into functions.php. The button will only appear in an edit post screen, not in a new post (makes sense).

/*-- View Listing button in add/edit listing ---*/
function render_post_button(){
	$listingid=$_GET['pid']; 
	if ($listingid != '' ) {
		$url = site_url() . '/?p=' . $listingid;
		echo '<div style="float:right;"><a title="View this listing in a new tab" class="button" href="' . $url . '" target="_blank">View Listing</a></div>';
	}
}
add_action( 'view_post_button','render_post_button' );
February 9, 2015 at 2:29 am in reply to: Backend speed problem 36141
Rob Rob This reply has been marked as private.
February 9, 2015 at 2:03 am in reply to: Horizontal checkbox field display 36137
Rob Rob

Excellent, thank you!

weDevs Team wrote:

February 8, 2015 at 3:57 pm in reply to: Horizontal checkbox field display 36111
Rob Rob

Hi Mirza

When logged in, go to http://v3.propertyfinda.co.nz/listing-edit/, and
look at
“rental features” – how do I format this horizontally?

weDevs Team wrote:

February 8, 2015 at 3:48 am in reply to: Horizontal checkbox field display 36084
Rob Rob This reply has been marked as private.
Viewing 15 Topics - 1 through 15 (of 36 total)