current creation
Forum Replies Created
-
Forum: Plugins
In reply to: [Essential Real Estate] add agent position to grid on agent pagenever mind.. I did a workaround that will suffice.
Forum: Plugins
In reply to: [Essential Real Estate] add agent position to grid on agent pageIs there not a way to add that info to the Agents?
I figured I would just try to add the Agent Positions under the short codes too, just as a text area, and it isn’t showing up on the page at all. If I disable the plugin, then that text shows up. Any clue why the text that I am adding to the page under the agents won’t even show up?
- This reply was modified 3 years, 10 months ago by current creation.
Forum: Plugins
In reply to: [Essential Real Estate] add agent position to grid on agent pageHere is a link to the page. As you can see, the Agent’s name and number of properties is listed, with a link to email them. I also need it to list the “agent-position” which is called on the individual agent’s pages, but not on this page for some reason. even if I display as a list, it will not show their “agent-position”. As in job title.
https://bluorchidrealty.com/agents/
Thanks again!
Forum: Plugins
In reply to: [Essential Real Estate] add agent position to grid on agent pagethanks for the reply, but it’s not the order that I am trying to edit. I am trying to add the agent-position, as in their title. In this case, it’s Sales Agent and Broker/Owner. That info doesn’t show up on the Agent page where you can see all agents. I want to display the agent’s title on the page with all Agents.
thank you again.
ok i fixed the Agents page. but the Properties page is still not editable…?
Forum: Plugins
In reply to: [Contact Form 7] Forms in email are not completedI think it’s theme related.
What would cause a theme to break the contact form all of the sudden?
It was working 2 days ago..
Forum: Themes and Templates
In reply to: [OceanWP] Header style creating a blank spaceWell, looks like I was able to just make adjustments to the header padding while using the Transparency header to make the site work.
Great theme! Wish I knew what was causing the other header styles to fail, but at least I was successful with the one.
Forum: Plugins
In reply to: [New User Approve] Hide specific userThe user registration approval page allows viewing of all the users in one scrollable screen and easily sort with the tab to see Approved vs. Denied. Instead of having to sort through 25 pages of users. It really is a nice way to view it.
hmm… noticing now, not all of them have the Pencil and Trash Can. Why is that?
Ok I found it. Didn’t realize that the Edit Pencil and Editing by clicking the field would give different options for editing. The Pencil was the key.
Forum: Plugins
In reply to: [Forms - Form builder and Contact form] Order Numberthank you
Forum: Fixing WordPress
In reply to: Notice: register_sidebar was called incorrectly. No id was setHello.
Did you find a solution?this thread has some solutions to the HTML problem.
https://www.ads-software.com/support/topic/html-allowed-in-feature-box-text-areaThx
Forum: Plugins
In reply to: [WP Booklet] 100% width and height of bookletFound it.
visit:
/includes/booklet/booklet.php
Tweak this to change sizes.
Messing with the ‘var bookletSide’ is what I specifically needed:/*—– Set variables —–*/
var booklet = jQuery(“.wp-booklet-<?php echo $instance_id ?>”);
var bookletContainer = jQuery(“.wp-booklet-<?php echo $instance_id ?>-container”);
var bookletThumbsContainer = jQuery(“.wp-booklet-<?php echo $instance_id ?>-thumbs”);
var bookletExpanded = jQuery(“.wp-booklet-<?php echo $instance_id ?>-expanded”);
var pageWidth = <?php echo $properties[‘wp-booklet-width’] ?>;
var pageHeight = <?php echo $properties[‘wp-booklet-height’] ?>;
var pagePadding = <?php echo $properties[‘wp-booklet-padding’] > -1 ? $properties[‘wp-booklet-padding’] : 10 ?>;
var bookletWidth = <?php echo $properties[‘wp-booklet-width’] ? ( $properties[‘wp-booklet-width’] * 2 ) : 560?> + (4 * pagePadding);
var bookletHeight = <?php echo $properties[‘wp-booklet-height’] ? $properties[‘wp-booklet-height’] : 380 ?> + (2 * pagePadding);
var bookletSide = 74;
var thumbsSide = 11;
var bookletContainerWidth = bookletWidth + bookletSide * 2;
var bookletThumbsContainerWidth = bookletWidth – 22 ;