Creatives
Forum Replies Created
-
Forum: Plugins
In reply to: [Author Box WP Lens] New Version Blows Up DiviHi there,
With the latest update, 2.0.1, either the author’s profile photo or the entire author box disappears. We are using Divi, and everything else is up to date. I have rolled back to the previous version, 1.4.6, on all but 1 staging site. Can you please help? Thanks!
Hi, We are having the same error show up on our site, hoping for a resolution soon. We have seen anywhere from 1 to as high as 128 past-due actions. The error reads Action Scheduler:?1?past-due action?found; something may be wrong.?Read documentation
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeThanks!
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeWould there be another way of saying do not display afl families ?
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeSo no php answer to my detailed question:)
?Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeI tried to find a developer. He needs to be a good communicator and teach me, which is hard to find…lmk if you know someone?
We are so close Steve
The family Chris&Heidi is already showing up where they should:
https://adoptionforlife.com/view-waiting-families/
with shortcode: [ltadb afl_family=”Y” perpage=”15″]
Now I want them to disappaer here
https://lifetimeadoption.com/west-region/
current shortcode: [ltadb region=”W” perpage=”15″]
When I add [ltadb region=”W” afl_family=”N” perpage=”15″] Many disappear not just Chris&Heidi who are the only afl family.Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeI added
‘afl_family’ => ”,then added
[ltadb afl_family=”N” perpage=”15″]
to the page but the afl family is still showing.Getting closer though, thank you so much!
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codefunction render_shortcode($atts) {
//Select what attributes the short code is looking for
$find_attributes = array(
‘state’ => ”,
‘military’ => ”,
‘aa’ => ”,
‘biracial’ => ”,
‘older’ => ”,
‘previous_adoption’ => ”,
‘special’ => ”,
‘live_in’ => ”,
‘spanish’ => ”,
‘religion’ => ”,
‘contact’ => ”,
‘drug’ => ”,
‘mental’ => ”,
‘single’ => ”,
‘family_hispanic’ => ”,
‘family_african_american’ => ”,
‘family_asian’ => ”,
‘family_american_indian’ => ”,
‘family_caucasian_’ => ”,
‘open_to_east_indian’ => ”,
‘limit’ => ”,
‘region’ => ”,
‘perpage’ => ”,
‘fillpages’ => ”,
‘bordercolor’ => ”,
‘borderwidth’ => ”,
‘nonavigation’ => ”,
‘video_embed’ => ”,
‘any’ => ”,
‘agency_family’ => ”,
‘spotlight_family’ => ”,
‘tele’ => ”,
‘featured’ => ”,
‘yh_old’ => ”
);I will add afl_family to this.
Question: I also have page-query.php with the same info in thisd install (previous screenshot in the link I gave you) and in the lifetime install. Why do I have it here and in 2 php docs? Is that necessary?
Forum: Fixing WordPress
In reply to: exclude an attribute from a short code// Register the shortcodes
add_shortcode( ‘ltadb’, array( &$this, ‘render_shortcode’ ) );
add_shortcode( ‘ltafamily’, array( &$this, ‘render_shortcode_2’ ) );
add_shortcode( ‘ltabm’, array( &$this, ‘render_shortcode_3’ ) );Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeI found it. Its a plugin called Lifetime Database query…
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeUnfortunately this was before my time and they did not provide support after they built it.
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeI looked through the php files but couldn’t find it. Is there a page name that is common for defining short codes? Is there a string of code that is common that I could use to search for it? I will keep looking. Thank you for clarifying!
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeI assumed the shortcode was based on the install name (ltadb or c-name) Sorry I’m obviously not a strong php programmer! We use it in many sites in combination with the attributes like this:
[ltadb afl_family=”Y” perpage=”15″]
on this site
https://adoptionforlife.com/view-waiting-families/I want to exclude these families from our main site lifetimeadoption.com but it pulls out families that are not afl as well when I say:
[ltadb afl_family=”N” perpage=”15″]
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeI thought that is what you mean by “parameter”?
Forum: Fixing WordPress
In reply to: exclude an attribute from a short codeSorry, it shows where I added the attribute into the query page so that i can use it in my short code.