Evan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Concerns about Block Markup (Overriding default Block classes)@t-p Thank you for the reply.
I have read all of the reading you provided. Thank you. I did not see anywhere in the global-styles-presets that suggests the CSS variable can be effected (it just discusses the values).
What about templates and block containers? those also seem to introduce these WP classnames with no clear documentation on how to overwrite them.
Thanks for your help
Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] How to add logic to Post TemplatesDesperately looking into the same thing. Closest discussion I could find so far is this github thread that is an open issue: https://github.com/WordPress/gutenberg/issues/32939
Hi Imran, I did test it and it doesn’t work.
Using $this as the variable breaks the site. I switched it for a more neutral $event parameter, and it causes an error when loading the events on the admin.
If you take a shot at it please keep us updated ??
That is very strange. The code with simple default values like “mystery”, “monsterid”, etc is not working either. I can confirm that the $avatar variable is being echoed out. The default sticks to the custom default avatar I set up for 90% of the cases. Seems strange that it’s not overriding.
Hi Angelo,
Thank you so much for the reply. I have this code I added based on your suggestions:
add_filter('em_event_end', 'detach_old_event'); function detach_old_event($this) { $this->detach(); }
Does this seem right to you? Thank you so much!
Hey Alex,
Sure. I have the before / after screenshots, jsut give me an email I can send them to.
I also added the following code to line 117 to show the field description:
echo '<p id="'.bp_get_the_profile_field_input_name().'-3" class="description">'.bp_get_the_profile_field_description().'</p>';
Would be great to include that in future updates as well! Thank you!
There are other small details default BP markup adds to xprofile fields, you might want to add, such as the “described-by” parameter in the legend, that you might be interested in studying – but they aren’t super relevant for my use case so I didn’t bother with them.
I have also tried
get_avatar($blogs_template->blog->admin_user_id, 250, $url, 'Profile photo of Site Author', array( 'width' => $r['width'], 'height' => $r['height'], 'class' => 'full-width', ));
to no success as well.
- This reply was modified 3 years, 6 months ago by Evan.
Hey thank you! I tried that but then the buttons still lead to the messages page URL with the added parameters.
The way I have it set up, it would be amazing if I could filter the URL to get the current URL with the added parameters. Is that possible you think?
Thank you so much!
Hi,
Yes I’m using the latest EM Dev Version 5.9.11.4. I have 4 recurring events, for two of them I am trying to set their ticket availability to “0 days before the event starts at 10:00am” and the value isn’t saving when I click update.
For the other two, I somehow got the value to save, and the availability is set for “0 days before the event starts at 10:00am”.
I am not sure what is causing it so sometimes save, and mostly not save correctly.
Thank you!
Thanks for letting me know. Are you able to reproduce the issue on your end too?
Let me know if there is any support I can provide. Thank you!
Forum: Everything else WordPress
In reply to: htaccess file corruptedI just fixed mine by pasting the standard wordpress HTACCESS code:
# BEGIN WordPress
# The directives (lines) betweenBEGIN WordPress
andEND WordPress
are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Hey Bizswoop team,
YES I would be happy to write up a tutorial. I can do so on here, or on the thread you move it to? Up to you! I will try to get it done this weekend.
Thanks,
EvanIt worked! Thank you so much for the walk through.
This is great. Thank you so much once again.
As a small token of gratitude, if you ever get questions on this forum regarding features similar to ones I implemented on my install of the plugin, feel free to send those folks over here and I will be happy to help them set up those features similar to my approach.
Oh my god, thank you so much Bizwoop team!
The sorting options are working incredibly. This makes my job SO much easier! I am sure many other users of the plugin will appreciate it as well.
I have a quick question about implementing the hook. I am trying to call it in my child theme’s functions.php file with a function that looks something like this:
add_filter('za_template_path', 'child-theme/directory-name');
It does not seem to be working. Any suggestions of a piece of code that can be used to call the hook?
Thank you so much once again, I really appreciate these updates to the plugin.
All the best,
EvanHi Bizwoop team,
Wow, thank you so much! It is a great honor to have helped you a little with the future direction of the plugin.
The front end options ordering will definitely game changing, and adding the hook will bring this plugin to a whole new level!
It already is the best free add-ons plugin available by a long way.
Thank you so much for your supporting the requests and caring about the community that uses the plugin.
If you have any questions about specific approaches I took with the customization, I would be happy to answer.
Thanks again and best regards,
Evan