Advertisement:

Author Topic: Refurbished Real Estate Theme  (Read 20517 times)

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #30 on: October 18, 2013, 11:42:33 pm »
 8) Great

thedon

  • Sr. Member
  • ****
  • Posts: 341
Re: Refurbished Real Estate Theme
« Reply #31 on: October 19, 2013, 12:16:21 am »
how to move this text to it's proper place please,see encircled


AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #32 on: October 19, 2013, 12:19:26 am »
That is its proper place. It is the social sharing icons which shouldn't be there...

thedon

  • Sr. Member
  • ****
  • Posts: 341
Re: Refurbished Real Estate Theme
« Reply #33 on: October 19, 2013, 12:29:22 am »
That is its proper place. It is the social sharing icons which shouldn't be there...

oh so whats the code and where can i place them please

got that one but i cannot post a comment
« Last Edit: October 19, 2013, 04:40:12 am by thedon »

pablo22

  • Newbie
  • *
  • Posts: 27
Re: Refurbished Real Estate Theme
« Reply #34 on: October 19, 2013, 05:37:21 pm »
Can someone take a look at my website and tell me what's wrong because I can't submit anything. When you click submit, or send button or try to register nothing happens. This is the second time this happens and I can't diagnose the problem.
Here's the link to my website.valdere.com

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #35 on: October 19, 2013, 06:24:22 pm »
Pablo, check the code for the buttons and make sure it looks similar to this
Code: [Select]
<button type="submit" class="button"><?php _e('Publish Ad''realestate'); ?></button>
That was a major problem in the original real estate theme. Check your forms and ensure that they take that format.

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #36 on: October 19, 2013, 06:26:07 pm »
@Thedon, have you enabled comments from admin settings?

pablo22

  • Newbie
  • *
  • Posts: 27
Re: Refurbished Real Estate Theme
« Reply #37 on: October 19, 2013, 07:19:51 pm »
I did and there's nothing wrong with them

thedon

  • Sr. Member
  • ****
  • Posts: 341
Re: Refurbished Real Estate Theme
« Reply #38 on: October 19, 2013, 07:36:43 pm »
@Thedon, have you enabled comments from admin settings?

yes i am sure have a look please


AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #39 on: October 19, 2013, 07:41:20 pm »
@pablo, looking at your source code I see everything wrong  :(. For example look at your item-post.php you will find

Code: [Select]
<a href="#" class="ui-button ui-button-gray js-submit">Publish</a>
That will not work. Why don't you try replacing it with

Code: [Select]
<button type="submit" class="button"><?php _e('Publish Ad''realestate'); ?></button>
and tell me if it works.

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #40 on: October 19, 2013, 07:44:04 pm »
@thedon,  where can I check out your site so that I can reproduce your problem?

thedon

  • Sr. Member
  • ****
  • Posts: 341
Re: Refurbished Real Estate Theme
« Reply #41 on: October 19, 2013, 07:47:38 pm »
@thedon,  where can I check out your site so that I can reproduce your problem?

here ya go bud

http://autoclassifieds.ie/

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #42 on: October 19, 2013, 07:56:46 pm »
I have found your problem and it is similar to pablo22 above. This is how to correct it

Go to your item.php and find

Code: [Select]
<a href="#" class="ui-button ui-button-gray js-submit"><?php _e("Send"'realestate');?></a>
Replace it with

Code: [Select]
<button type="submit" class="button"><?php _e('Send''realestate'); ?></button> then let me know if it works

pablo22

  • Newbie
  • *
  • Posts: 27
Re: Refurbished Real Estate Theme
« Reply #43 on: October 19, 2013, 08:07:21 pm »
it seems to be working..... 8)
I am going to correct all the links that were not working with same method.
« Last Edit: October 19, 2013, 09:30:18 pm by pablo22 »

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #44 on: October 19, 2013, 08:08:47 pm »
Great. Make sure you change all your forms.